discount - aareano/ifshop-wiki GitHub Wiki

This drop is corresponds to Shopify's.

missing properties

none

additional properties

none



discount.id

Returns the id of the discount.


discount.title

Returns the title or discount code of the discount.

Input

{{ discount.title }}

Output

SPRING14

discount.code

Returns the title or discount code of the discount. Same as discount.title.


discount.amount

Returns the amount of the discount. Use one of the money filters to return the value in a monetary format.

Input

{{ discount.amount | money }}

Output

$25

discount.total_amount

Returns the total amount of the discount if it has been applied to multiple line items. Use a money filter to return the value in a monetary format.


discount.savings

Returns the amount of the discount's savings. The negative opposite of amount. Use one of the money filters to return the value in a monetary format.

Input

{{ discount.savings | money }}

Output

$-25

discount.total_savings

Returns the total amount of the discount's savings if it has been applied to multiple line items. The negative opposite of total_amount. Use a money filter to return the value in a monetary format.


discount.type

Returns the type of the discount. The possible values of discount.type are:

  • FixedAmountDiscount
  • PercentageDiscount
  • ShippingDiscount