chrismfz Posted October 8, 2008 Share Posted October 8, 2008 (edited) Is this only me or a bug ? If someone can check this.. When I am trying to transfer a domain from cart.php?a=add&domain=transfer there are two options. One for register and one for transfer. Default checked is the transfer one. BUT if I check by mistake or anything the register option it will forced to remain there. I cannot change it back to transfer so I need to go back and so on... The code in .tpl of cart is the default one.: <p><input type="radio" name="domain" value="register" id="selregister" /> <label for="selregister">text for register<br /> <input type="radio" name="domain" value="transfer" id="seltransfer" checked /> <label for="seltransfer">text for transfer</label></p> Edit: The opposite (from register link) doesnt occur. It is forced to register and if I click Transfer it remains to Register radio button. So it's happening only in transfer option for some reason. Can someone verify / check this ? Edited October 8, 2008 by chrismfz Link to comment Share on other sites More sharing options...
redrat Posted October 8, 2008 Share Posted October 8, 2008 This is one instance when I believe opening a support ticket here would be to your advantage. You would get a fast reply anyway. It does sound like it might be an issue. Link to comment Share on other sites More sharing options...
sparky Posted October 9, 2008 Share Posted October 9, 2008 Does the same thing for me as well in FireFox but works fine in IE Link to comment Share on other sites More sharing options...
joe123 Posted October 9, 2008 Share Posted October 9, 2008 i posted the solution here http://forum.whmcs.com/showthread.php?t=14383 Link to comment Share on other sites More sharing options...
chrismfz Posted October 9, 2008 Author Share Posted October 9, 2008 That worked! I never could imagine that this should be so easy... Just a <div> and works now like a charm! Thanks a lot joe Link to comment Share on other sites More sharing options...
sparky Posted October 11, 2008 Share Posted October 11, 2008 The correct fix is that the closing </label> is missing on the first line. It should be like this <p><input type="radio" name="domain" value="register" id="selregister" /> <label for="selregister">text for register</label><br /> <input type="radio" name="domain" value="transfer" id="seltransfer" checked /> <label for="seltransfer">text for transfer</label></p> Link to comment Share on other sites More sharing options...
joe123 Posted October 11, 2008 Share Posted October 11, 2008 The correct fix is that the closing </label> is missing on the first line.It should be like this <p><input type="radio" name="domain" value="register" id="selregister" /> <label for="selregister">text for register</label><br /> <input type="radio" name="domain" value="transfer" id="seltransfer" checked /> <label for="seltransfer">text for transfer</label></p> that is right , i added that to that code but i forgot to mention that as well Link to comment Share on other sites More sharing options...
Recommended Posts