Files
ultimatemember/templates/message.php
T

27 lines
681 B
PHP
Raw Normal View History

2023-04-07 11:33:22 +03:00
<?php
/**
2023-04-11 16:25:25 +03:00
* Template for the message after registration process
*
2024-09-12 16:44:53 +03:00
* This template can be overridden by copying it to your-theme/ultimate-member/templates/message.php
2023-04-11 16:25:25 +03:00
*
* Call: function parse_shortcode_args()
*
2023-04-17 17:24:42 +03:00
* @version 2.6.1
2023-04-11 16:25:25 +03:00
*
* @var string $mode
* @var int $form_id
2023-04-07 11:33:22 +03:00
*/
2023-04-11 16:25:25 +03:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
} ?>
2019-07-17 16:55:09 +03:00
2019-07-16 18:40:07 +03:00
<div class="um <?php echo esc_attr( $this->get_class( $mode ) ); ?> um-<?php echo esc_attr( $form_id ); ?>">
2014-12-15 22:38:07 +02:00
2015-05-02 02:49:05 +03:00
<div class="um-postmessage">
<?php
// translators: %s: The message after registration process based on a role data and user status after registration
printf( __( '%s', 'ultimate-member' ), $this->custom_message ); ?>
2014-12-15 22:38:07 +02:00
</div>
2023-04-07 11:33:22 +03:00
</div>