jafrin Posted February 11, 2015 Share Posted February 11, 2015 The below image is my WHMCS cart page, where i can find the code to edit the check box and option buttons. i like to replace the default check box with customized image. where i can find the code in .tpl file? 0 Quote Link to comment Share on other sites More sharing options...
Digvijay Posted February 13, 2015 Share Posted February 13, 2015 Hi We can't alter addons checkbox html directly . But you can use css or js to achieve what you want. That addon html is coming from yourwhmcs/templates/orderforms/yourorderform/configureproduct.tpl from this code {if $addons} <p><strong>{$LANG.orderchooseaddons}</strong></p> <p>{$LANG.orderaddondescription}</p> <div class="orderbox"> <table> {foreach key=num item=addon from=$addons} <tr><td>{$addon.checkbox}</td><td><label for="a{$addon.id}"><strong>{$addon.name}</strong> - {$addon.description} ({$addon.pricing})</label></td></tr> {/foreach} </table> </div> {/if} WHat you can do is add a selector the parent and then use jquery or css. 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.