WebzPro Posted September 24, 2008 Share Posted September 24, 2008 FireFox 3.0.1 bug cart.php?a=add&domain=register Had a customer bring to my attention and I also tested. When the customer gets to this point and want to choose the radio button "I want to transfer my domain to" you cannot choose that choice. It just stays on the above choice. This does not happen in IE or Safari. Tested on a Mac and PC with same result. 0 Quote Link to comment Share on other sites More sharing options...
chickendippers Posted September 24, 2008 Share Posted September 24, 2008 Your order form works fine for me. 0 Quote Link to comment Share on other sites More sharing options...
WebzPro Posted September 24, 2008 Author Share Posted September 24, 2008 If I go to http://www.webzpro.com/wbill/cart.php?a=add&domain=register I cannot choose "I want to transfer my domain to WebzPro" Go to https://www.webzpro.com/wbill/domainchecker.php enter a domain you have that is already registered it will come up unavailable. Click order now, it goes to https://www.webzpro.com/wbill/cart.php?a=add&domain=register enter the same valid domain that is already registered try to choose "I want to transfer my domain to WebzPro" It will not let you. Again I have tested this on 2 different Macs and 3 different PC's. Same results. Customer had same issue who entered a support ticket with the same issue using FireFox and when he tried Internet Explorer it went through fine. 0 Quote Link to comment Share on other sites More sharing options...
Lawrence Posted September 24, 2008 Share Posted September 24, 2008 I am using Firefox 3.0.2 on Debian Linux and tried the same page on my own (very basic) integration. https://www.lcwsoft.com/whmcs/cart.php?a=add&domain=register Works fine with no problems. It would appear that this is an issue specific to your integration. 0 Quote Link to comment Share on other sites More sharing options...
joe123 Posted September 24, 2008 Share Posted September 24, 2008 put your radio buttons in a <div> tag or in a table , otherwise you will confuse Firefox. <div><input type="radio" name="domain" value="register" id="selregister" checked /> <label for="selregister">I want WebzPro to register a new domain for me.</div><br /> <div><input type="radio" name="domain" value="transfer" id="seltransfer" /> <label for="seltransfer">I want to transfer my domain to WebzPro</label></div> Or <table border="0" cellspacing="0" cellpadding="0"> <tr> <td><input type="radio" name="domain" value="register" id="selregister" checked /> <label for="selregister">I want WebzPro to register a new domain for me.</td> </tr> <tr> <td><input type="radio" name="domain" value="transfer" id="seltransfer" /> <label for="seltransfer">I want to transfer my domain to WebzPro</label></td> </tr> </table> 0 Quote Link to comment Share on other sites More sharing options...
WebzPro Posted September 25, 2008 Author Share Posted September 25, 2008 put your radio buttons in a <div> tag or in a table , otherwise you will confuse Firefox. <div><input type="radio" name="domain" value="register" id="selregister" checked /> <label for="selregister">I want WebzPro to register a new domain for me.</div><br /> <div><input type="radio" name="domain" value="transfer" id="seltransfer" /> <label for="seltransfer">I want to transfer my domain to WebzPro</label></div> Or <table border="0" cellspacing="0" cellpadding="0"> <tr> <td><input type="radio" name="domain" value="register" id="selregister" checked /> <label for="selregister">I want WebzPro to register a new domain for me.</td> </tr> <tr> <td><input type="radio" name="domain" value="transfer" id="seltransfer" /> <label for="seltransfer">I want to transfer my domain to WebzPro</label></td> </tr> </table> Thanks for the advise, what template would this be in? 0 Quote Link to comment Share on other sites More sharing options...
joe123 Posted September 25, 2008 Share Posted September 25, 2008 adddomain.tpl in your default order form folder <div><input type="radio" name="domain" value="register" id="selregister"{if $domain eq "register"} checked{/if} /> <label for="selregister">{$LANG.orderdomainoption1part1} {$companyname} {$LANG.orderdomainoption1part2}</label></div<br /> <div><input type="radio" name="domain" value="transfer" id="seltransfer"{if $domain eq "transfer"} checked{/if} /> <label for="seltransfer">{$LANG.orderdomainoption3} {$companyname}</label></div> 0 Quote Link to comment Share on other sites More sharing options...
WebzPro Posted September 25, 2008 Author Share Posted September 25, 2008 Thank you Joe123. 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.