Created
January 24, 2019 20:19
-
-
Save ncesar/dccdd0010088cd757362eb59c583478b to your computer and use it in GitHub Desktop.
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
add_filter ( 'woocommerce_account_menu_items', 'misha_rename_downloads' ); | |
function misha_rename_downloads( $menu_links ){ | |
// $menu_links['TAB ID HERE'] = 'NEW TAB NAME HERE'; | |
$menu_links['downloads'] = 'My Files'; | |
return $menu_links; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment