Jump to content

Billing Cycle edit in Cart


Recommended Posts

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.

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • 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