• Resolved mayursorathiya

    (@mayursorathiya)


    Hi Team

    I am using the ultimate Membership plugin. I have already purchased it. When I register with supplier. There is 2 option for registration by
    1) Email Verification
    2) Mobile OTP verification

    When the user selects a mobile number at that time Email field will be hidden. so when the user registers with a Mobile number, the “nobody627e594d8dd3d” email address is set. I need to put another default email address when user register with mobile number.

    I already tried this hook but it’s not working for me.

    <?php add_filter( ‘um_user_register_submitted__email’, ‘function_name’, 10, 1 ); ?>

    Can you please guide me here?

    Thanks & Regards

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Aswin Giri

    (@aswingiri)

    Hello @mayursorathiya

    Please try this:

    add_filter( 'um_user_register_submitted__email', function( $user_email ){
     $user_email = 'your default email address here';
     return $user_email;
    },25 );
    • This reply was modified 3 years, 11 months ago by Aswin Giri.
    Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hello @mayursorathiya

    This thread has been inactive for a while, so we’ll go ahead and mark it Resolved. Please feel free to re-open this thread by changing the Topic Status to ‘Not Resolved’ if any other questions come up and we’d be happy to help. 🙂

    Regards,

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘nobody627e594d8dd3d’ is closed to new replies.