Home Forums WoodMart support forum my account menu Reply To: my account menu

#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