Home Forums Basel support forum How to add registration button?

How to add registration button?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #15810

    MaxLutsenko
    Participant

    Hello, how can I add the registration button on the site and go to the registration page?

    #15812

    Artem Temos
    Keymaster

    Hi,

    Thank you for choosing our theme and contacting us.

    By default, this header layout doesn’t have Login/Register link. But you can add it manually placing the following code snippet to the functions.php file in the child theme.

    add_filter( 'basel_header_configuration', 'basel_custom_header_configuration', 1, 1 );
    
    function basel_custom_header_configuration() {
    
    		return array(
    			'container' => array(
    				'wrapp-header' => array(
    					'logo',
    					'main_nav',
    					'right-column' => array(
    						'header_links',
    						'search',
    						'wishlist',
    						'cart',
    						'mobile_icon',
    					)
    				)	
    			),
    		);
    }

    Kind Regards
    XTemos Studio

    #15814

    MaxLutsenko
    Participant

    I would like to make the registration form as on your demosite. Here is a https://demo.xtemos.com/basel/my-account/
    Is it possible ?

    #15815

    Artem Temos
    Keymaster

    Yes, you can enable registration form in WooCommerce -> Settings -> Accounts.

    #15817

    MaxLutsenko
    Participant

    Perfectly! Thanks!

    #15819

    Artem Temos
    Keymaster

    You are welcome!

Viewing 6 posts - 1 through 6 (of 6 total)