Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Last active May 11, 2021 10:19
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 jjmontalban/253b5f317caab3edcdae9cc14f8532ca to your computer and use it in GitHub Desktop.
Save jjmontalban/253b5f317caab3edcdae9cc14f8532ca to your computer and use it in GitHub Desktop.
hide options in Woocommerce Account menu
<?php
/**
* @snippet Ocultar Seccion en Mi Cuenta
* @based on ayudawp
*/
///////////////////////////////
add_filter( 'woocommerce_account_menu_items', 'hideSectionProfile', 999 );
function hideSectionProfile( $items ) {
unset($items['downloads']);
unset($items['dashboard']);
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment