Capslock10
Capslock10

Reputation: 806

How can I only remove the shipping method on the cart page, not on the checkout. woocommerce

I modified the cart-shipping.php to remove the shipping method.

But, when I delete the code to remove the shipping method, that also will remove the shipping method on the checkout page. How can I just delete the method on the cart and keep the shipping method on the checkout page?

Thanks.

Upvotes: 0

Views: 739

Answers (2)

rajnik faldu
rajnik faldu

Reputation: 107

please antick first checkbox of calculations enter image description here

Upvotes: 0

rajnik faldu
rajnik faldu

Reputation: 107

add_filter( 'woocommerce_cart_shipping_method_full_label',             
'bbloomer_remove_shipping_label', 10, 2 );

function bbloomer_remove_shipping_label($label, $method) {
$new_label = preg_replace( '/^.+:/', '', $label );
return $new_label;
}

Upvotes: 1

Related Questions