Skip to content

Instantly share code, notes, and snippets.

@jorpdesigns
Created July 12, 2021 15:27
Show Gist options
  • Save jorpdesigns/81e558ce3645f8fb94e4d98a01059a02 to your computer and use it in GitHub Desktop.
Save jorpdesigns/81e558ce3645f8fb94e4d98a01059a02 to your computer and use it in GitHub Desktop.
Snippet to remove or modify WooCommerce "My Account" page tabs
<?php
add_filter ( 'woocommerce_account_menu_items', 'remove_my_account_links' );
function remove_my_account_links( $menu_links ){
unset( $menu_links['tab-slug-to-be-removed'] );
$menu_links['tab-slug-to-be-renamed'] = 'New Name';
return $menu_links;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment