Skip to content

Instantly share code, notes, and snippets.

@camaleaun
Created June 5, 2018 20:14
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 camaleaun/ead3319324d66684f44a337edc9dc1b1 to your computer and use it in GitHub Desktop.
Save camaleaun/ead3319324d66684f44a337edc9dc1b1 to your computer and use it in GitHub Desktop.
Function to wc myaccount navigation add
add_filter( 'woocommerce_account_menu_items', 'daico_account_menu_items2' );
function daico_account_menu_items2( $items ) {
unset( $items['customer-logout'] );
$items['orders'] = 'Vendas';
$items['customer-logout'] = 'Sair';
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment