WordPress and buddypress programming

remove the tab menus from WooCommerce  My Account page

Viewing 0 reply threads
  • Author
    Posts
    • #2485
      Michael Mc
      Keymaster
      @mkmcst

      The following code snippet allows you to remove the tab menus from the users’ My Account page using Subscription for WooCommerce plugin. The below code removes the Subscription and Payment tab from the My Account page.

      To achieve this simply add the code snippet to the active child theme function.php file.

      
      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;
      }
      
Viewing 0 reply threads
  • You must be logged in to reply to this topic.