Skip to content

Instantly share code, notes, and snippets.

@jrick1229
Created August 10, 2021 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrick1229/91833f044614d8bde2aae65ff2d90178 to your computer and use it in GitHub Desktop.
Save jrick1229/91833f044614d8bde2aae65ff2d90178 to your computer and use it in GitHub Desktop.
Remove the 'Subscriptions' or 'My Subscription' tab from the My Account page in WooCommerce (when Subscriptions is active)
<?php
add_filter('woocommerce_account_menu_items', 'wcs_remove_subscription_tab');
function wcs_remove_subscription_tab($menu_links) {
unset($menu_links['subscriptions']);
return $menu_links;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment