Separate registration page in WooCommerce website

前端 未结 3 1981
青春惊慌失措
青春惊慌失措 2020-12-06 21:56

Can anybody help me build a separate registration page in WooCommerce instead of displaying it in the my-account page?

In the my-account p

3条回答
  •  被撕碎了的回忆
    2020-12-06 22:27

    The Code for form-login.php

    is

    --- START SECTION ---

    
    
    
    
    
    
    
    
    

    --- END SECTION ---

    Whet can i put this snippet :

    --- START SECTION ---

    if( isset( $_GET['action']) && $_GET['action'] == "register"){
        // Section for registration
    }else {
        // Section for Login form
    }
    

    --- END START

    and this URL

    --- START SECTION ---

     register 
    

    --- END SECTION ---

提交回复
热议问题