Answers for "downloads remove woocommerce"

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
0

completely remove woocommerce

define( 'WC_REMOVE_ALL_DATA', true );
Posted by: Guest on February-28-2021

Browse Popular Code Answers by Language