Code-Snippets-Functions/Execute a function on a child site/WooCommerce/remove-downloads-from-menu-in-my-account-page.txt

5 lines
175 B
Text

function wc_my_account_menu_items( $items ) {
unset($items['downloads']);
return $items;
}
add_filter( 'woocommerce_account_menu_items', 'wc_my_account_menu_items' );