In this file: /common_files/modules/Fast_Lane_Checkout/checkout_3_place.tpl
Changed this code:
Code:
Quote:
<div class="terms_n_conditions">
<label for="accept_terms">
<input type="checkbox" name="accept_terms" id="accept_terms" value="Y" />
{$lng.txt_terms_and_conditions_note|substitute:"te rms_url":"`$xcart_web_dir`/pages.php?alias=conditions":"privacy_url":"`$xcart _web_dir`/pages.php?alias=business"}
</label>
</div>
|
..to this code:
Quote:
<div class="terms_n_conditions" style="display:none;">
<label for="accept_terms">
<input type="checkbox" name="accept_terms" id="accept_terms" value="Y" checked />
{$lng.txt_terms_and_conditions_note|substitute:"te rms_url":"`$xcart_web_dir`/pages.php?alias=conditions":"privacy_url":"`$xcart _web_dir`/pages.php?alias=business"}
</label>
</div>
|
The "style" change hides that block of HTML (I don't want to bother showing the option) and the "checked" defaults the value to on (this causes the warning message about leaving it blank to not appear.)