Hello,
Thank you so much purchasing our theme and contacting our support center.
By default, this header layout doesn’t have “My account” links in the header. To add them you can put the following code snippet to the functions.php file in the 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',
)
)
),
);
}
Registration can be enabled in WooCommerce -> Settings -> Accounts.
Kind Regards
XTemos Studio