Home › Forums › Basel support forum › Login/Register › Reply To: Login/Register
November 13, 2017 at 12:55 pm
#23988
Artem Temos
Keymaster
Hello,
Try to add this code snippet to the functions.php file in the child theme to display these links
add_filter( 'basel_header_configuration', 'basel_custom_header_configuration', 1, 1 );
function basel_custom_header_configuration() {
return array(
'container' => array(
'wrapp-header' => array(
'main_nav',
'logo',
'right-column' => array(
'header_links',
'search',
'wishlist',
'cart',
'mobile_icon',
)
)
),
);
}
Regards