Jump to content

edigest

Member
  • Posts

    1
  • Joined

  • Last visited

Everything posted by edigest

  1. This isn't the most elegant solution, but it is a quick fix. In templates/orderforms/standard_cart/addons.tpl you can set the billing cycle for each addon if you know the addon ID: <div class="product-pricing"> {if $addon.free} {$LANG.orderfree} {elseif $addon.id == 1} <span class="price">{$addon.recurringamount} Annually</span> {if $addon.setupfee}<br />+ {$addon.setupfee} {$LANG.ordersetupfee}{/if} {elseif $addon.id == 2} <span class="price">{$addon.recurringamount} Monthly</span> {if $addon.setupfee}<br />+ {$addon.setupfee} {$LANG.ordersetupfee}{/if} {else} <span class="price">{$addon.recurringamount} {$addon.billingcycle}</span> {if $addon.setupfee}<br />+ {$addon.setupfee} {$LANG.ordersetupfee}{/if} {/if} </div>
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated