Answers for "account woocommerce remove tab"

0

remove downloads tab woocommerce

add_filter( 'woocommerce_account_menu_items', 'custom_remove_downloads_my_account', 999 );
 
function custom_remove_downloads_my_account( $items ) {
unset($items['downloads']);
return $items;
}
Posted by: Guest on July-10-2020

Code answers related to "account woocommerce remove tab"

Browse Popular Code Answers by Language