Skip to content

Instantly share code, notes, and snippets.

@ncesar
Created January 24, 2019 20:19
Show Gist options
  • Save ncesar/dccdd0010088cd757362eb59c583478b to your computer and use it in GitHub Desktop.
Save ncesar/dccdd0010088cd757362eb59c583478b to your computer and use it in GitHub Desktop.
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