zenrider420 Posted March 29, 2009 Share Posted March 29, 2009 While going through the checkout process, i want my customers to have to place a check in the checkbox saying they agree to the terms of service, and not have it checked by default. I've tried a few different things in the order-carrier.tpl file but can't get it to display without the check by default. Does anyone have any ideas for this?Thanks! Link to comment Share on other sites More sharing options...
fkeuning Posted March 31, 2009 Share Posted March 31, 2009 The file you mentioned, order-carrier.tpl is the right file to look in. In this file there is this part of code: {l s='Terms of service'} <input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedTOS}checked="checked"{/if} /> Change...value="1" into value="0" and the checkbox is not checked by default. 1 Link to comment Share on other sites More sharing options...
zenrider420 Posted March 31, 2009 Author Share Posted March 31, 2009 Hey there fkeuning, Thanks for the reply!!!I tried that but it did not work... However, if you also remove checked="checked" it works, removing the check from the box.Problem solved! ;-) 1 Link to comment Share on other sites More sharing options...
fkeuning Posted March 31, 2009 Share Posted March 31, 2009 Great! Looked like my option worked for me. I changed it last night in my code and got the result I wanted. I'll check if I have to remove "Checked" as well for better result. Link to comment Share on other sites More sharing options...
Recommended Posts