inovve

Remove downloads from Woocommerce account page

Jan 28th, 2020
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. add_filter( 'woocommerce_account_menu_items', 'custom_remove_downloads_my_account', 999 );
  2.  
  3. function custom_remove_downloads_my_account( $items ) {
  4. unset($items['downloads']);
  5. return $items;
  6. }
Add Comment
Please, Sign In to add comment