Home Forums Basel support forum My Account, Login Not shown in header

My Account, Login Not shown in header

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

    5ivemediapl
    Participant

    Hi,

    i’ve turned on the settings to allow my account and login links to appear in header.

    Seems like its not appearing. how can i fix this?

    #1577

    Artem Temos
    Keymaster

    Hello there,

    Thank you for the question.

    This type of header doesn’t include account and login links by default. But you can add the following code snippet into child theme functions.php file to achieve this.

    
    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

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