View Single Post
  #13  
Old 07-20-2016, 05:44 PM
 
brettsontfarrey brettsontfarrey is offline
 

Member
  
Join Date: Oct 2007
Location: Madison, WI
Posts: 12
 

Default 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
Reply With Quote