• Resolved Will

    (@dworg)


    Hi, how do I remove the My Wallet menu from WooCommerce’s My account page?

    I’ve removed the Wallet endpoints at WooCommerce > Settings > Advanced but the “My Wallet” Menu still appears though.

    Please advise.

Viewing 1 replies (of 1 total)
  • Plugin Author Subrata Mal

    (@subratamal)

    Hi @dworg

    Please use below code in theme function.php file to remove wallet menu from WooCommerce my-account page.

    add_filter('woocommerce_account_menu_items', 'woocommerce_account_menu_items_callback', 999);
    
    if(!function_exists('woocommerce_account_menu_items_callback')){
        function woocommerce_account_menu_items_callback($items){
            if(isset($items['woo-wallet'])){
                unset($items['woo-wallet']);
            }
            return $items;
        }
            
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove My Wallet menu from My account page’ is closed to new replies.