Coding: Add Cpanel Login and Webmail Auto Launch to Clientarea Home Page
Basically after upgrading we lost the use of sparky's clientarea home page add-on. So we need someone to code this to work.
We will pay for this to be done. WHMCS is pretty much useless in trying to resolve anything code wise other than being told to ask on the forum...
PM me if interested...
Yes of course, but it has nothing to do with backing up or having a bad upgrade...
It has to do with parsing and stripping of html characters in the newer version... the html that worked before does not work now...(except for basic stuff). This is why I asked if it was intentional or if it was a bug?
Reason why I ask is if it is a bug maybe Matt might shoot out a quick fix for those of us that need it...
After upgrading to 4.5.2 we lost ALL html in our product descriptions. i.e./ images, links formatting...nothing works anymore. It is a huge mess now...
Was HTML formatting beyond the basic removed intentionally?
I guess the only way is to hardcode an html section in configureproduct.tpl for addon SSL to keep the automation functions in place?
Please correct me if there is another way to do this...
Could not get it to do what I wanted so this is what i did so it can benefit others who don't want this showing when using configurable options. Keep in mind this is what you would do if you were following how to setup globalsign from the wiki instructions verbatim and makes the SSL purchase experience a lot less confusing to the customer... If someone can improve upon it please do:
edited configureproducts.tpl and located this code:
{elseif $pricing.type eq "onetime"}
<input type="hidden" name="billingcycle" value="onetime" />
{$pricing.onetime} {$LANG.orderpaymenttermonetime}
{else}
changed to:
{elseif $pricing.type eq "onetime"}
<input type="hidden" name="billingcycle" value="onetime" />
{$LANG.orderpaymenttermonetime}
{else}
next edited products.tpl and located the code:
{elseif $product.paytype eq "onetime"}
{$product.pricing.onetime} {$LANG.orderpaymenttermonetime}
and change it to:
{elseif $product.paytype eq "onetime"}
I understand what you are saying but it is not quite what I want to do...here is a screen shot. To clarify I would like to completely remove the billing cycle and only show configurable options. Keep in mind that I only want to remove this from:
The product group:
cart.php?gid=5
All other product groups should show this...what I am asking for is the "if" statement to hide the billing cycle option from product group 5 only.
See picture:
Hi John that wont work because the product is priced by configurable options so doing so will only cause this:
$-1.00 CAD + $-1.00 CAD Setup Fee One Time
Ok what we want to do is remove the billing cycle from the order process for only one particular product group as we use the billing cycle for all other products...so the option of removing it globally will not work.
Here is what we have:
Billing Cycle
$0.00 CAD One Time
The product group is:
cart.php?gid=5
Every product in this product group is priced via configurable options. We are using WHMCS version 4.2.1
Could someone shed some light on this one?
Thanks in advance.
What I would like to do is have the option of when a customer purchases hosting we want to sell them the option of SSL Certs in the style of the addon product feature. Am I missing something in the configuration settings where I can do this?
We already have SSL setup ad configurable products.
WHMCS Version 4.2.1
Thank-you
Quentin
I agree with Varial, there are a lot more users in Canada and the USA than in the UK. There needs to be an addition of a module for US/Canadian users by default and this should be dealt with in priority.
Hi there. I wanted to change the order of the dropdown pricing options on the product configuration page. Currently this is what I have:
$xx.xx CAD Quarterly
$xx.xx CAD Semi-Anually
$xx.xx CAD Anually
What I want to change this to is:
$xx.xx CAD Anually
$xx.xx CAD Semi-Anually
$xx.xx CAD Quarterly
This is so the customer defaults to paying for a year instead of the quarterly option first. Is there a switch in the admin or is this a file change?