Skip to content

Instantly share code, notes, and snippets.

@mio31337
Created April 8, 2020 17:05
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 mio31337/3f4a7860578a68df8153f09cb8c81a43 to your computer and use it in GitHub Desktop.
Save mio31337/3f4a7860578a68df8153f09cb8c81a43 to your computer and use it in GitHub Desktop.
WooCommerce: Remove downloads tab in My Account
/**
* Remove downloads tab in My Account
* Author: MarioMarkovic.com
*/
add_filter( 'woocommerce_account_menu_items', 'custom_remove_downloads_my_account', 999 );
function custom_remove_downloads_my_account( $items ) {
unset($items['downloads']);
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment