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:

  1. Open "/templates/orderforms/your_order_form/configureproduct.tpl"
  2. Find the pricing output. Pricing output begins at "$pricing.monthly"
  3. Change the following:
Change FromChange 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:

  • No labels