Hello!
If you have a multilingual website and you have a minimum order amount, you have the same amount for each currency. Poorly.
If you have a WPML plugin, this is the solution proposed by WPML. WPML invites creators to cooperate and submit corrections.
It looks like this:
This can be fixed by adding the wcml_raw_price_amount filter to CtMPAC_Application::get_minimum_purchase_value() in app/public/wp-content/plugins/minimum-purchase-amount-for-woo-cart/includes/public/ct-class-min-cart -amount -application.php:
]]>public
function
get_minimum_purchase_value() {
????
$minimumCartTotal
= get_option(
'ct_mpac_minimum_purchase_value_for_all'
, 0);
????
$minimumCartTotal
= apply_filters(
'wcml_raw_price_amount'
,
$minimumCartTotal
);
????
/**
?????
* Filter the amount set as the minimum cart total to customize the behaviour with this hook.
?????
*
?????
* @since 2.2
?????
*/
????
$minimumCartTotal
= apply_filters(
'ct_mpac_filter_min_cart_total'
,
$minimumCartTotal
, WC()->cart);
????
return
$minimumCartTotal
;
}
Hi,
Is there a way to get ZIP codes from shipping zone to set minimum order value per zip code?
Regards!
]]>I want to translate the words “Proceed to checkout”.
How about changing around 20 lines of ct-class-min-cart-amount-application.php
as follows?
echo '<a href="#" class="checkout-button button alt wc-forward">' . __('Proceed to checkout', 'ct-minimum-purchase-amount-for-woo-cart') . '</a>';
Thank you.
]]>Hi, can you help?
what to do if minimum order depends on product categories?
are you able to make upgrade plugin, to add possibility to create unlimited numbers of rules,
every rule contains from:
1. chosen categories
2. minmum sum order for this categories
3. and field for message in cart if not enough sum for this rule
Hey,
for our WooCommerce Shop, we are using your plugin, to get a minimum order amout. Its working fine, but we have an issue with our shipping cost.
For example, the minimum order amout is 23.95€. We have 2 procuts in the cart, together they cost 3€. The message says now, we need to get items in value of 16€ instead of 20.95. The shippingcost are 4.95€. How do we get the solution that the shipping costs are not included in the calculation?
Regards
Maurice
I’ve a problem with the VAT-amount over the shipping costs. it happens when a order is placed below the minimum order amount and the order is “blocked” for that reason. When a customer adds another article to the cart the VAT amount over the shipping costs have disappeared. When a new order is placed above the minimum order amount the shipping costs are correct.
]]>Hi. I would like to be able to set a minimum order value by shipping method. Is this plugin suitable for this ?
For example, on this page https://www.willowsnursery.co.uk/other-willow-prices/ you can see we sell short willow cuttings where postage is £4. We sell them as 10 for £7, but we want a minimum order value of 2 bundles ie £14 (but that can be 2 different varieties/products).
Or they can order short willow cuttings with long willow whips and it then doesn’t matter if they only order 10 – but we also want to set a minimum order value for the long willow whips which we send with a carrier @ £19. Again it doesn’t matter if they order, say 8 of one length 8 of another length and 8 of another length. But we don’t wnat them to oly be able to order 8 whips on their own.
Hope that makes sense and someone can help.
Thank you.
Is there a way to do this ?
]]>