Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-dashboard-menu-my-account.txt

7 lines
201 B
Text

add_filter( 'woocommerce_account_menu_items', 'wc_remove_my_account_dashboard' );
function wc_remove_my_account_dashboard( $menu_links ){
unset( $menu_links['dashboard'] );
return $menu_links;
}