VM Ordernumber Plugin
VM Downloads for Sale Plugin
VM Shipping by Rules Plugins
VM Add Buyers to Joomla Groups
Advanced Order Numbers for Magento
Basic / Advanced Order Numbers for WooCommerce
Shipping By Rules for WooCommerce
Tutorial: Automatic updates for Commercial VM and WP plugins
Tutorial: Extending VM with custom views
Tutorial: Upgrading a VM2 plugin to VM3
Advanced Ordernumbers for VirtueMart
Downloads for Sale for VirtueMart
Shipping by Rules for VirtueMart
EU Sales Reports for VirtueMart
Subscribe Buyers to AcyMailing for VirtueMart
Add Buyers to Joomla Groups for VirtueMart
VM Customers to Joomla Groups Admin Panel
Auto Parent Categories for VirtueMart
Name The Price for VirtueMart
Ordernumbers for Magento
Ordernumbers for WooCommerce
Shipping By Rules for WooCommerce
CB Usergroups Field Plugin With great sadness we have to announce that we are ceasing development of all our VirtueMart, WooCommerce and Joomla plugins. Effective immediately, all our plugins -- even those that were paid downloads -- are made available for free from our homepage (GPL license still applies), but we cannot and will not provide any support anymore.
It has been a great pleasure to be part of the thriving development communities of VirtueMart as well as WooCommerce. However, during the last year it became painstakingly clear that in addition to a full-time job, a young family and several other time-consuming hobbies at professional level (like being a professional singer) the plugin development and the support that it requires is not sustainable and is taking its toll. It has been an honor, but it is now time to say good bye!
|
Welcome,
Guest
|
|
Hi Reinhold,
Hope everything good with you. I have a rule which should be for All Countries except UK, Jersey and Guernsey. At the moment I have to select all Countries then remove the UK, Jersey and Guernsey. Would it be an idea to have an Exclude or Include field to go along with the countries selection? regards Eliot |
|
Dear Eliot,
To exclude certain countries there are already some approaches in place: 1) If you want to exclude them, because you have separate shipping costs in place, for which you already have rules: Simply use the first ruleset / country zone for UK, Jersey and Guernsey and make sure that all orders are really handled there (to be on the safe side, you can add a fall-through/catch-all rule of "NoShipping" at the very end of the first ruleset). All orders from these countries will then always be handled by the first ruleset and the second ruleset will never even be considered. You don't need any additional country exclusino in the second ruleset. 2) Country checks do not neccessarily use the country selection box. You can also check the country explicitly in a rule using the country or country2 variable. To exclude UK, Jersey and Guernsey, simply prepend one of the following to your ruleset (notice that I couldn'f find Guernsey in the country list, but I guess you should easily be able to expand the rule to cover Guernsey in your setup, too): Free version (i.e. no list and no mathematical expressions): country2=="GB"; NoShipping
country2=="JE"; NoShippingcountry2 in list("GB", "JE"); NoShipping3. If you want to exclude those countries only from one particular rule, then you can add the additional condition not(country in list("GB", "JE"));I think there are more than enough approaches to exclude certain countries, so I don't see the need to bloat the UI with an additional country exclusion box. Best regards, Reinhold |
|
Hi Reinhold,
Thanks for the excellent support. I had forgotten about using the country2 not in list. You're right no need to add to UI. Regards Eliot |