• Resolved vinay94

    (@vinay94)


    Hello,
    Diana Burduja. Your plugin is a game changer plugin. I love using your plugin again and again on different websites. The only thing I need that how we can add signup link or button beside login form.

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

Viewing 1 replies (of 1 total)
  • Plugin Author Diana Burduja

    (@diana_burduja)

    Hello,

    you can add HTML after the login form by using the woocommerce_login_form_end hook.

    For example, this PHP code will add a “Register” link after the login form:

    
    function multistep_checkout_registration_link_after_login() { 
        echo '<a href="'.get_permalink(wc_get_page_id('myaccount')) .'">'. __( 'Register' ) . '</a>';
    }
    add_action('woocommerce_login_form_end', 'multistep_checkout_registration_link_after_login'); 
    • This reply was modified 6 years, 7 months ago by Diana Burduja.
Viewing 1 replies (of 1 total)
  • The topic ‘can add signup beside login form?’ is closed to new replies.