Dear Vabril,
First, let me mention that the plugin is not actually designed to product per-product shipping structures. There are, however, ways to achieve what you want. The "easiest" way is to use a custom variable to collect the shipping costs of each product and check each of your products separately. In particular:
Variable=MyCost; Value=0
Variable=MyCost; "tcell3N" in SKUs; Value=MyCost+14+5*evaluate_for_skus(articles, "tcell3N")
Variable=MyCost; "tcell5N" in SKUs; Value=MyCost+14+5*evaluate_for_skus(articles, "tcell5N")
....
Shipping=MyCost
See also
open-tools.net/forum/shipping-by-rules-p...figuration.html#6388
As a simplification: Does each product have the same basic shipping cost of 19€ for the first item and the same cost 5$ for each additional item? In that case, there is no need to check each article separately. The shipping cost can then be calculated directly as
- 19$ times the number of products
- PLUS
- 5$ times (the total quantity of the cart MINUS the number of products)
or equivalently
- 14$ times the number of products
- PLUS
- 5$ times the total quantity of the cart
This can be implemented as a single rule:
Shipping=14*Products + 5*Articles
Best regards,
Reinhold