2023-04-07 11:33:22 +03:00
|
|
|
<?php
|
|
|
|
|
/**
|
2023-04-11 16:25:25 +03:00
|
|
|
* Template for the message after registration process
|
|
|
|
|
*
|
|
|
|
|
* This template can be overridden by copying it to yourtheme/ultimate-member/message.php
|
|
|
|
|
*
|
|
|
|
|
* Call: function parse_shortcode_args()
|
|
|
|
|
*
|
2023-04-11 09:13:36 +03:00
|
|
|
* @version 1.0.0
|
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">
|
2020-12-04 03:54:59 +02:00
|
|
|
<?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>
|
2019-08-08 00:36:33 +03:00
|
|
|
|
2023-04-07 11:33:22 +03:00
|
|
|
</div>
|