Answer the question
In order to leave comments, you need to log in
How to remove shipping cost in woocommerce?
Good day, dear ones!
Help in resolving the issue. You need to completely disable the display of shipping costs on all woocommerce pages:
Answer the question
In order to leave comments, you need to log in
Hello.
Here is the solution:
add_filter('woocommerce_cart_shipping_method_full_label','remove_local_pickup_free_label', 10, 2);
function remove_local_pickup_free_label($full_label, $method){
$full_label = substr($full_label, 0, strpos($full_label, ':'));
return $full_label;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question