Remove a specific menu from the ‘My Account’ page.
Insert this code into functions.php add_filter( ‘woocommerce_account_menu_items’, ‘misha_remove_my_account_links’ ); function misha_remove_my_account_links( $menu_links ){ unset( $menu_links[ ‘edit-address’ ] ); // Addresses unset( $menu_links[ ‘dashboard’ ] ); // Remove Dashboard unset( $menu_links[ ‘payment-methods’ ] ); // Remove Payment Methods unset( $menu_links[ ‘orders’ ] ); // Remove Orders unset( $menu_links[ ‘downloads’ ] ); // Disable Downloads unset( $menu_links[ […]