Fixed fees are extra charges added on top of the calculated product price. They can be a flat amount (e.g., a $5 handling fee) or a dynamic amount driven by a formula (e.g., a rush-order surcharge that only applies when the customer selects "Rush"). Fixed fees are never affected by discounts and appear as separate line items in the price summary. You configure them in Calculator Editor → Options & Pricing → Fixed Fees.
5 or a formula like IF(HAS("RUSH", "YES"), 25, 0).| Field | Description |
|---|---|
| Fee name | Label shown to the customer in the price summary. |
| Fee formula | A number or formula expression that produces the fee amount. |
HAS("KEY", "VALUE"). For switches, use OPT("KEY") (returns TRUE or FALSE).0 is not charged and is hidden from the customer.15. Every order includes a $15 setup charge.IF(HAS("RUSH", "YES"), 25, 0). The $25 fee only applies when the customer selects the rush option.