• Resolved thebbb

    (@thebbb)


    Is there PHP coding I can place on functions page to remove the “Payment Methods” tab from the My Account page?

    Thank you in advance!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • add_filter('woocommerce_account_menu_items', 'webtoffee_remove_my_account_links');
    
    function webtoffee_remove_my_account_links($menu_links) {
    
        //unset($menu_links['subscriptions']); // Subscriptions
        unset($menu_links['payment-methods']); // Payment methods
    
        return $menu_links;
    }

    Please try with above code snippet. Please leave a review here.

    Thread Starter thebbb

    (@thebbb)

    Hi Markhf,

    The code snippet did not work. I placed it in the functions.php page of my active theme. Not sure if this matters, but I am running PHP version 7.2. Feel free to let me know if I need to change the PHP version, or if I should try something else.

    Will definitely be leaving a positive review one it is working.

    Thank you!

    Hi @thebbb

    Please create a support ticket here, we will check this in your website.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove “Payment Methods” tab from My Account’ is closed to new replies.