Home Forums Basel support forum Simplified Header Layout HELP

Simplified Header Layout HELP

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #9560

    akukunis
    Participant

    Hi,

    I can’t seem to make the “Login, Register” show up next to the shopping cart icon on the right for the header layout “Simplified Header Layout”. Currently it only shows up for “Double Menu header layout”. Is there something that i’m not seeing.

    Let me know

    Thanks!

    #9572

    Artem Temos
    Keymaster

    Hello,

    Thank you for the question.

    Yes, My account links now available only for Double menu header layout. Try to add this code snippet to the functions.php in the child theme to add it to simplified header also

    add_filter( 'basel_header_configuration', 'basel_custom_header_configuration', 1, 1 );
    
    function basel_custom_header_configuration() {
    
    		return array(
    			'container' => array(
    				'wrapp-header' => array(
    					'logo',
    					'main_nav',
    					'right-column' => array(
    						'header_links',
    						'search',
    						'wishlist',
    						'cart',
    						'mobile_icon',
    					)
    				)	
    			),
    		);
    }

    Regards

    #9596

    akukunis
    Participant

    Hi THanks for that,

    However i added the snippet in the functions.php for the basel theme and it did not work. Where do i go about finding the Child theme to place this code in the functions.php?

    Let me know,

    Thanks!

    #9602

    Artem Temos
    Keymaster

    Hello,

    You can find basel child theme in the package downloaded from ThemeForest. You need to upload and activate child theme and use its functions.php file.

    #9605

    akukunis
    Participant

    Okay, but what happens to the other template with the main theme etc
    well i loose anything? customizations, content etc?

    #9607

    Artem Temos
    Keymaster

    No, you will not loose anything. The only thing that may happen when you switch to child theme is loosing of widgets configuration. You may need to re-add widgets to their locations in Appearance -> Widgets.

    Regards

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