If you would like the customer to see the bonus offer during the ordering process, you can make the following changes to the order form:
- Open "/templates/orderforms/your_order_form/configureproduct.tpl"
- Find the pricing output. Pricing output begins at "$pricing.monthly"
- Change the following:
Change From | Change To |
---|---|
"{$pricing.monthly}" | "{$pricing.monthly} {if $ExtendDuration.Monthly}+ {$ExtendDuration.Monthly} {/if}" |
"{$pricing.quarterly}" | "{$pricing.quarterly} {if $ExtendDuration.Quarterly}+ {$ExtendDuration.Quarterly} {/if}" |
"{$pricing.semiannually}" | "{$pricing.semiannually} {if $ExtendDuration.SemiAnnually}+ {$ExtendDuration.SemiAnnually} {/if}" |
"{$pricing.annually}" | "{$pricing.annually} {if $ExtendDuration.Annually}+ {$ExtendDuration.Annually} {/if}" |
"{$pricing.biennially}" | "{$pricing.biennially} {if $ExtendDuration.Biennially}+ {$ExtendDuration.Biennially} {/if}" |
"{$pricing.triennially}" | "{$pricing.triennially} {if $ExtendDuration.Triennially}+ {$ExtendDuration.Triennially} {/if}" |
The template file should look like that: