Quote:
Originally Posted by philrisk
I have not gone live with this yet as we are doing a complete site rebuild but we have tested in Chrome, Firefox, IE8 & IE9 and all seems to be fine.
Find this file in /skin/common_files/modules/One_Page_Checkout/ajax.checkout.js and replace with either of the attached files. You will need to remove the version number and re-save as a js file.
Then create a css class:
Code:
.inactive {opacity: .3; filter: Alpha(Opacity=30);}
If that doesn't work I will paste in my whole file so you can look through the complete code. 
|
Slight change to the 4.5.2 code which I have jusrt done as I noticed a class change.
line 1008 and 1009 change
Code:
this.customernotes = $('#opc_customer_notes', this.elm$);
this.terms = $('#opc_terms', this.elm$);
to
Code:
this.customernotes = $('.checkout-customer-notes', this.elm$);
this.terms = $('.terms_n_conditions', this.elm$);