My Account, Login Not shown in header
-
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?
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