Home Forums Basel support forum There's no Login/register in my header and in my-account page, i can't register

There's no Login/register in my header and in my-account page, i can't register

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #22580

    baygon100000
    Participant

    why on my header there’s no login and register. and when i open my-account pages, there’s only login there’s no register page? why? i already check list “anyone can register” can you help me please

    Attachments:
    You must be logged in to view attached files.
    #22592

    Artem Temos
    Keymaster

    Hello,

    Thank you so much purchasing our theme and contacting our support center.

    By default, this header layout doesn’t have “My account” links in the header. To add them you can put 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',
    					)
    				)	
    			),
    		);
    }
    

    Registration can be enabled in WooCommerce -> Settings -> Accounts.

    Kind Regards
    XTemos Studio

    #22743

    baygon100000
    Participant

    oke thanks. but i want to register but i can’t register, there’s just login page. can you help me?

    Attachments:
    You must be logged in to view attached files.
    #22745

    baygon100000
    Participant

    oops sorry i already found it, based on your sugestion. thank you so much 🙂

    #22754

    Artem Temos
    Keymaster

    Great, you are welcome!

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