TacticalVPS Posted April 25, 2020 Share Posted April 25, 2020 Hey just wondering is it possible to edit the Billing Cycle option on the order community so it dose not display the amount i attached a image to show what i am talking about All i want to do is remove the $0.00NZD so it just says Monthly on it 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 27, 2020 Share Posted April 27, 2020 On 25/04/2020 at 11:19, TacticalVPS said: Hey just wondering is it possible to edit the Billing Cycle option on the order community so it dose not display the amount i attached a image to show what i am talking about not from settings. On 25/04/2020 at 11:19, TacticalVPS said: All i want to do is remove the $0.00NZD so it just says Monthly on it then that's achieved either using an action hook to manipulate the pricing array or editing the configureproduct.tpl template in your active orderform theme (i'm assuming it's standard_cart) {if $pricing.monthly} <option value="monthly"{if $billingcycle eq "monthly"} selected{/if}> {$pricing.monthly} </option> {/if} becomes... {if $pricing.monthly} <option value="monthly"{if $billingcycle eq "monthly"} selected{/if}> {$LANG.orderpaymenttermmonthly} </option> {/if} ... and then for quarterly, you change {$pricing.quarterly} to {$LANG.orderpaymenttermquarterly} and then repeat for the other billing cycles. 0 Quote Link to comment Share on other sites More sharing options...
TacticalVPS Posted May 10, 2020 Author Share Posted May 10, 2020 Cheers thanks for the help 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.