I had this problem on my old store with the Chrome browser, during checkout, the customer gets :
Address Errors - Confirmation password does not match password.
This was a well-known problem several years ago, and the fix recommended to the includes/checkout/checkout.js
file fixed it. But, now, with osCmax 2.5.4, that fix did NOT work. Is there some other location that also needs a patch?
The fix was to replace line 1149 :
if($('assword[name="password"]').val() != '')
with :
if($('assword[name="password"]').is(':visible') && $('
assword[name="password"]').val() != '')
(please ignore the stupid emojis above.)
I went over it character by character and don't see any mistake.
Thanks,
Jon
Bookmarks