Remove “Downloads” from My account
Removes the Downloads tab from the customer’s My account page, for shops that don’t sell downloadable products.
<?php
add_filter(
'woocommerce_account_menu_items',
static function ( $items ) {
unset( $items['downloads'] );
return $items;
}
);
In these packs
- WooCommerce: account, emails and admin: A leaner My account page, handier order lists and emails, and lighter pages.