Use this modifier to prepend the operator to a money variable.
{{ price_modifier }} // $1.00{{ price_modifier | add_operator }} // +$1.00
Use this modifier to strip the currency, length, or weight unit from a variable.
{{ price }} // $19.99{{ price | strip_unit }} // 19.99{{ length }} // 10 in{{ length | strip_unit }} // 10{{ weight }} // 3.5 oz{{ weight | strip_unit }} // 3.5
Use this modifier to calculate the total price of a product variation option.
{{ variations }}{{ options }}{{ price | total }}{{ /options }}{{ /variations }}