Guest Posted December 4, 2011 Share Posted December 4, 2011 Hello, If I click to 2nd or 3rd section, only the text will be highlighted. I attached a screenshot with my problem. Regards, Adam 0 Quote Link to comment Share on other sites More sharing options...
Guest Posted December 5, 2011 Share Posted December 5, 2011 I found the problem: Replace this: jQuery(this).parent().addClass('optionselected'); to jQuery(this).parent().parent().addClass('optionselected'); in configureproductdomain.tpl line 90. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS CEO Matt Posted December 5, 2011 WHMCS CEO Share Posted December 5, 2011 This is already in the templates. Maybe you didn't update your templates? Matt 0 Quote Link to comment Share on other sites More sharing options...
Guest Posted December 5, 2011 Share Posted December 5, 2011 (edited) I updated my template, but downloaded it again from the client area, here is the content: jQuery(".domainreginput").hide(); jQuery(".domainoptions input:first").attr('checked','checked'); jQuery(".domainoptions input:first").parent().parent().addClass('optionselected'); jQuery("#domain"+jQuery(".domainoptions input:first").val()).show(); jQuery(document).ready(function(){ jQuery(".domainoptions input:radio").click(function(){ jQuery(".domainoptions .option").removeClass('optionselected'); jQuery(this).parent().addClass('optionselected'); jQuery("#domainresults").slideUp(); jQuery(".domainreginput").hide(); jQuery("#domain"+jQuery(this).val()).show(); }); }); This is the content of the slider order form, in the modern template is the correct line. Edited December 5, 2011 by Guest 0 Quote Link to comment Share on other sites More sharing options...
WHMCS CEO Matt Posted December 5, 2011 WHMCS CEO Share Posted December 5, 2011 Ah yep we've got it now, thanks! Matt 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.