Re: How to remove Terms & Conditions
This worked for me...
Open: skin/common_files/modules/Fast_Lane_Checkout/checkout_3_place.tpl
change this:
<input type="checkbox" name="accept_terms" id="accept_terms" value="Y" />
to this:
<input type="hidden" name="accept_terms" id="accept_terms" value="Y" />
Open: skin/common_files/modules/Fast_Lane_Checkout/checkout_js.tpl
change this:
if (termsObj && !termsObj.checked) {
xAlert(txt_accept_terms_err, lbl_warning, 'W');
return false;
}
to this:
if (termsObj && !termsObj.checked) {
//xAlert(txt_accept_terms_err, lbl_warning, 'W');
//return false;
}
__________________
xcart 4.2.3
|