Hi @4ugustin
Thanks for reaching out.
In order to move the User Switcher panel to another location, you need to place the following piece of code in your child theme’s functions.php file:
function sfwc_change_user_switcher_position() {
remove_action( 'woocommerce_before_account_navigation', 'sfwc_action_woocommerce_account_dashboard' );
add_action('user_switcher_custom_position', 'sfwc_action_woocommerce_account_dashboard');
}
add_action( 'init', 'sfwc_change_user_switcher_position' );
and put the following piece of code (remeber to add PHP tags if necessary) where you want the User Switcher to appear (e.g. in the header of your child theme):
do_action( 'user_switcher_custom_position' );
Hope this helps.