Welcome,
Guest
|
TOPIC:
Can't get the plugin to work with categories 17 Mar 2017 11:11 #1
|
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
|
|
In my shop reclamepunt.be i want the prices in the categories: 135, 129, 132, 133, 140, which are listed under "textiel" surcharged with an extra cost of 37€. I tried some rules but they dont't work
this is the syntax i used: Weight<0.001; 0 Weight<2; Shipping=6 Weight<10; Shipping=7 Weight<30; Shipping=20 Weight>30; Shipping=40 Name=Textielbedrukking; Categories == list (133); ExtraShippingCharge=37 Name=Textielbedrukking; Categories == list (135); ExtraShippingCharge=37 Name=Textielbedrukking; Categories == list (129); ExtraShippingCharge=37 Name=Textielbedrukking; Categories == list (132); ExtraShippingCharge=37 the main problem is that the extra shippong charge for those categories doesn't work |
|
Dear Webone.be,
1. A check "categories == list(133)" means that the list of categories contains ONLY 133, i.e. only products from that category (and no other) category are bought. If I understand you correctly, you want to charge an additional cost of 37€ for the shipping of the whole order if at least one product from either of these categories is in the cart. This should be done with a condition: Name=Textielbedrukking; Condition=contains_any(Categories, 133, 135, 129, 132, 140); ExtraShippingCharge=37 So, the whole ruleset should rather be: Name=Textielbedrukking; Condition=contains_any(Categories, 133, 135, 129, 132, 140); ExtraShippingCharge=37
Weight<0.001; 0
Weight<2; Shipping=6
Weight<10; Shipping=7
Weight<30; Shipping=20
Weight>=30; Shipping=40 Best regards, Reinhold |