We would like the net price to be combined with the VAT before the website decides whether they will receive free shipping.
Example: Currently we have free shipping available after £200. The website currently only gives the customer this based on the net value of the tools they are buying. In the basket it will then show the shipping and VAT added to it. If this goes over £200, it does NOT give them free shipping because it’s the VAT that took it over.
We would like the VAT and net value to be the deciding factor if they receive free shipping. So in the above example, they should have received free delivery because the net value and VAT went over £200.
I can’t find an option that would give you that choice and desperately need some help.
Hope this makes sense!
]]>Quentin.
]]>One of our stores offers free delivery for orders over 100 EUR. Since today, this option has been offered to all customers, even for orders well under EUR 100.
Tried WooCommerce 8.6.1 and 8.7
WordPress 6.5
Theme Storefront 4.5.4
Good morning,
I have a question about shipping. At the moment I have some products that have a free shipping class and some that have a paid shipping class. I have 3 shipping solutions in parrallel: 1 by post (Bpost), 1 with Mondial Relay and 1 free post delivery for a minimum purchase amount.
I have 2 questions:
- When I have 2 products with 2 different shipping classes in my cart (1 free shipping class and the other with paid shipping class), I would like to be able to apply automatically the free shipping class first so with this no shipping costs will be calculated.
- When the minimum basket is reached for free delivery, I would like to hide with php code the "by post Bpost" option only, not hidding the Mondial Relay option as I want to let the choice to the client even it's free to select by post or by Mondial relay. I found this php code but it hides all the options even Mondial Relay, how can I hide only "by post Bpost"?
// Hide all shipping rates when free shipping is available, but keep "Local pickup" method
add_filter( 'woocommerce_package_rates', 'wpsh_hide_if_free', 100 );
function wpsh_hide_if_free($rates) {
$free = $local = array();
foreach ( $rates as $rate_id => $rate ) {
if ( 'free_shipping' === $rate->method_id ) {
$free[ $rate_id ] = $rate;
} elseif ( 'local_pickup' === $rate->method_id ) {
$local[ $rate_id ] = $rate;
}
}
return ! empty( $free ) ? array_merge( $free, $local ) : $rates;
}
]]>(Subscription fees are calculated from the 1st of the following month)
Please help in this matter.
]]>I find things online how to autoapply free delivery coupons but this is not a coupon its just a delivery method.
Thank you !
]]>Does anyone know how to do this? Note: I’m not trying to autoapply a coupon (its not a free delivery coupon – most things online are about autoapplying a coupon. its simply if basket is above £40 then free delivery becomes available and I want that to be automatically chosen as the shipping method)
Thank you!
]]>At the moment I can only see, that when chosen free delivery amount dpd delivery disappears.
]]>Please can you explain how it’s possible to offer free shipping over a certain amount with your plugin?
Many thanks
]]>So we have a multi-vendor site setup which by looking google shopping does not support really.
But on all our products it shows “Free Delivery” as you can see from this image:
https://ibb.co/WKWD80H
As i know this cannot be removed, and we would like each product to have a price but not sure we can as each seller as individual prices and we are using a plugin called: Product Per Shipping” so my question is, is there a way for us to like
Change Free Delivery to actually say: Express Shipping or something?
Thanks
Aaron