Home › Forums › Basel support forum › Login icon does not show › Reply To: Login icon does not show
July 27, 2019 at 10:16 am
#134670
Artem Temos
Keymaster
Try to use the following code instead
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',
)
)
),
);
}