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

    (@champsupertramp)

    Hi,

    I apologize for the delay on responding to your ticket.

    You can change the secondary button URL in the Register form with filter hook:

    um_register_form_button_two_url

    Here’s the code snippet:

    
    add_filter("um_register_form_button_two_url","custom_um_register_form_button_two_url", 10, 2 );
    function custom_um_register_form_button_two_url( $url, $args ){
       
        $url = "http://www.example.com/";
       return $url;
    }
    

    Hope this helps you.

    Regards,

    • This reply was modified 6 years, 10 months ago by Champ Camba.
    • This reply was modified 6 years, 10 months ago by Champ Camba.
    • This reply was modified 6 years, 10 months ago by Champ Camba.
Viewing 1 replies (of 1 total)

The topic ‘Login URL’ is closed to new replies.