• Resolved aakashsharmawhtl

    (@aakashsharmawhtl)


    Can you please help me in updating the URLs for Submit and Secondary Buttons on the Login, Registration and Profile Page

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

    (@aswingiri)

    Hello @aakashsharmawhtl

    You can not change url for submit button as it is a form submit button and responsible for submitting form. If you would like to change url for secondary button for login and registration form, you can try following codes:

    add_filter( 'um_core_form_meta_all', function($core_form_meta_all){
    $core_form_meta_all['_um_login_secondary_btn_url'] = 'your custom url';
    $core_form_meta_all['_um_register_secondary_btn_url'] = 'your custom url';
    return $core_form_meta_all;
    });
    Thread Starter aakashsharmawhtl

    (@aakashsharmawhtl)

    I want to redirect to another page after the form is submitted successfully

    Plugin Support yuriinalivaiko

    (@yuriinalivaiko)

    You can configure redirection after login and registration using the user role settings on wp-admin > Ultimate Member > User Roles > Edit Role. See Registration Options and Login Options.

    Plugin Support andrewshu

    (@andrewshu)

    Hi @aakashsharmawhtl

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.