Home Forums Basel support forum My account icon

My account icon

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

    ricardocastro1
    Participant

    Hi, I enabled the icon for my account in header, but it doesnt work, it suppoust to be near to shoping cart icon on the top right of the header.

    #167021

    Hello,

    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'
    			)
    		)	
    	);
    }

    Best Regards

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