Home Forums Basel support forum Issue with account icon in "Base Header"

Issue with account icon in "Base Header"

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #105359

    Celia03
    Participant

    Hello guys,

    I have an issue with the header. I can’t see the “account” icon when I choose the “Base header”.
    I tried with all the others (headers) and it works, I can see it, but not when I set this one (Base Header) up.

    Here are two screenshots to show you that the icon is missing in the Base header while it is actually there with the “Logo center” header for example.

    Thanks in advance for your help,

    Célia

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

    Artem Temos
    Keymaster

    Hi,

    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',
    				'widget_area',
    				'right-column' => array(
    					'header_links',
    					'search',
    					'wishlist',
    					'cart',
    					'mobile_icon',
    				)
    			)
    		),
    		'navigation-wrap' => array(
    			'container' => array(
    				'main_nav'
    			)
    		)	
    	);
    }

    Regards

    #105425

    Celia03
    Participant

    Awesome, thanks a lot !

    #105480

    Artem Temos
    Keymaster

    You are welcome.

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