Created
August 10, 2021 16:26
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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