Home Forums Basel support forum "Show links to login/register or my account page in the header" not working

"Show links to login/register or my account page in the header" not working

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #152964

    D0R1AN
    Participant

    Hello,

    I’m using “Base header” and want to show the myaccount links “Show links to login/register or my account page in the header”. Somehow they don’t show up, neither TEXT nor ICON. Please advise.

    Regards
    Dorian

    #152971

    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

    #153300

    D0R1AN
    Participant

    Thx, that worked.

    I also realized there’s a bug (on my site and in your demo):
    Please compare https://demo.xtemos.com/basel/?head1 in Firefox and Chrome browsers.
    Seems like the min-height of the .wrapp-header does not get applied in Firefox.

    Regards,
    Dorian

    #153312

    Hello,

    Thank you for the information. We shall take it into consideration.

    Best Regards

    #153392

    Hello,

    You can use this code while we release the update where this problem would be solved:

    .browser-Firefox .wrapp-header {
    	height: 0;
    }

    Add this code to the Theme Settings > Custom CSS > Global

    Best Regards

    #153393

    D0R1AN
    Participant

    Thank you!

    #153409

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

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

The topic ‘"Show links to login/register or my account page in the header" not working’ is closed to new replies.