Hi Guys,
Would Love to display your Register/My account on my header but I’m using ‘Base Header’ for my website and it doesn’t display it by default.
I found this code on the forum but seems like it may be adapted to my header layout option (basel_custom_header_configuration’, ???,??? );
because it moves my main menu and desactivates my submenus.
Any Idea ?
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',
)
)
),
);
}