Created
July 12, 2021 15:27
-
-
Save jorpdesigns/81e558ce3645f8fb94e4d98a01059a02 to your computer and use it in GitHub Desktop.
Snippet to remove or modify WooCommerce "My Account" page tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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