Skip to content

Instantly share code, notes, and snippets.

@m4munib
Created October 13, 2018 08:45
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 m4munib/fc019aa2ae832459b810e70f189cccef to your computer and use it in GitHub Desktop.
Save m4munib/fc019aa2ae832459b810e70f189cccef to your computer and use it in GitHub Desktop.
<?php
add_filter('woocommerce_account_menu_items', 'mk_remove_woocomerce_account_menu_items');
function mk_remove_woocomerce_account_menu_items($menu_links) {
if(isset($menu_links['edit-address'])){
unset($menu_links['edit-address']); // Addresses
}
return $menu_links;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment