I am using the following to trigger free freight for orders over $75:
I have a few products over $75 that the manufacturer requires we charge shipping on. Is there a way for these few products to be the exception to the rule? Thanks.
Code:
<mvt:item name="toolkit" param="basket|total" /> <mvt:if expr="l.settings:toolkit:baskettotal LT 75"> <mvt:item name="toolkit" param="sassign|trigger|75" /> <mvt:item name="toolkit" param="math_subtract|result|trigger|l.all_settings:toolkit:baskettotal" /> <mvt:item name="toolkit" param="currencyformat|formatted_result|result" /> <br><span style="color: #ff5911; font-size: 14px;">Order &mvt:global:formatted_result; more in products and receive free freight on your order. $75.00 is all it takes.</span> <mvt:else> <br><span style="color: #ff5911; font-size: 14px;">Congratulations! Your basket contains over $75.00, therefore you qualify for free freight today if you complete your purchase.</span> </mvt:if>
Comment