Viewing 1 replies (of 1 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @minicovip,

    Sorry for the late response. We were busy keeping up with support backlogs.

    Please try this code snippet to your theme’s function.php file. This will support the shortcode in the email template.

    add_filter("um_email_send_message_content","um_email_content_shortcode", 10, 3 );
    function um_email_content_shortcode( $message, $slug, $args ){
      
      return do_shortcode( $message );
    }

    Let us know if you’re still having issues.

    Regards,

Viewing 1 replies (of 1 total)

The topic ‘Notification new user email template add custom shortcode issue’ is closed to new replies.