Skip to content

Instantly share code, notes, and snippets.

@softiconic
softiconic / functions.php
Last active December 2, 2023 19:01
Exclude a shipping method on the WooCommerce cart page.
/**
* remove shipping method - Cart page
* Put this in your functions.php file
*/
function disable_shipping_calc_on_cart( $show_shipping ) {
if( is_cart() ) {
return false;
}
return $show_shipping;
}