Advertisement
fahimmurshed

Remove "Download" Tab from WooCommerce My Account Page

Feb 18th, 2022
1,388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_filter( 'woocommerce_account_menu_items', 'fahimm_remove_downloads_tab_my_account', 999 );
  2.  
  3. function fahimm_remove_downloads_tab_my_account( $items ) {
  4. // You can add other tab names
  5. unset($items['downloads']);
  6. return $items;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement