Home Forums Basel support forum header layout "simplified" does not have accounts icon

header layout "simplified" does not have accounts icon

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #251999

    I wanted to use the header layout “simplified” but it does not have the accounts icon for desktop. please guide, I have given access rights so you guys if want can add it in the header layout “simplified”

    #252167

    Hello,

    By default, this header layout doesn’t have Login/Register link. But you can add it manually by 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'
    			)
    		)	
    	);
    }

    Best Regards

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