Skip to content

Instantly share code, notes, and snippets.

@ibrahimmumcu
Last active January 1, 2021 16:01
Show Gist options
  • Save ibrahimmumcu/e351381aa85ae96a79f9585cbc03dc0c to your computer and use it in GitHub Desktop.
Save ibrahimmumcu/e351381aa85ae96a79f9585cbc03dc0c to your computer and use it in GitHub Desktop.
Woocommerce - Remove "downloads" from my account menu items
<?php
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