Skip to content

Instantly share code, notes, and snippets.

@grola
Created January 24, 2018 10:27
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 grola/dd7d881f28b3a474af7c2801c9128da5 to your computer and use it in GitHub Desktop.
Save grola/dd7d881f28b3a474af7c2801c9128da5 to your computer and use it in GitHub Desktop.
Remove downloads from My Account page in Woocommerce
add_action( 'woocommerce_account_menu_items', 'studiowp_woocommerce_account_menu_items' );
function studiowp_woocommerce_account_menu_items( $items ) {
unset( $items['downloads'] );
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment