Home Forums Basel support forum Login icon does not show on base header

Login icon does not show on base header

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

    Kevlarus
    Participant

    Hello,

    I have “MY ACCOUNT LINKS”

    “Show in the HEADER”

    Show links to login/register or my account page in the header” and “Login form in sidebar”
    both eabled. With style ICON

    but the icon does not show up, even if changed to text.
    I have header type “base header”

    Pelase help

    #135246

    Artem Temos
    Keymaster

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

    Regards

    #135247

    Kevlarus
    Participant

    Thanks!

    #135253

    Artem Temos
    Keymaster

    You are welcome.

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