Hello,
Thank you for choosing our theme and contacting us.
By default, this header layout doesn’t support Login / Register links. If you want, you can add them manually. Just paste this code snippet to the functions.php
file in your 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',
'main_nav',
'right-column' => array(
'header_links',
'search',
'wishlist',
'cart',
'mobile_icon',
)
)
),
);
}
As for icons, don’t paste the full name like fa fa-cart
. Simply put cart
.
Kind Regards
XTemos Studio