So here is the announcement a lot of users have been waiting for.
Custom Pricing Rules - We experimented with a lot of options and users have asked for some pretty complex pricing rules. We tried different math libraries and was never 100% happy with the flexibility so we thought why not use the logic language we already have? So we did and our new pricing rules accept any crazy liquid code you can come up with. So here are some examples you can use and change to your liking
50% Off Standard Price
{{price | times:0.5}}
Use the Compare At Price instead
{{compare_at_price}}
Use the Highest value out of Price and Compare at Price
{% if price > compare_at_price %}{{price}}{% else %}{{compare_at_price}}{% endif %}
Weight * Compare at Price if Compare at Price is set.
{% if compare_at_price %}{{compare_at_price | times: grams}}{% else %}{{price}}{% endif %}