Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Last active February 3, 2023 09:49
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/82ef050128a9502ab2b2d6bbcda19abe to your computer and use it in GitHub Desktop.
Save jjmontalban/82ef050128a9502ab2b2d6bbcda19abe to your computer and use it in GitHub Desktop.
<?php
/* Ocultar Secciones en Mi Cuenta Woocommerce */
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