Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'woocommerce_account_menu_items', 'fahimm_remove_downloads_tab_my_account', 999 );
- function fahimm_remove_downloads_tab_my_account( $items ) {
- // You can add other tab names
- unset($items['downloads']);
- return $items;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement