Home › Forums › WoodMart support forum › my account menu › Reply To: my account menu
January 25, 2018 at 3:39 pm
#35404
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to do this
function woodmart_remove_my_account_logout( $items ) {
unset( $items['customer-logout'] );
return $items;
}
add_filter( 'woocommerce_account_menu_items', 'woodmart_remove_my_account_logout', 100 );
Regards