Reputation: 1
When clicking on the continue button of the onepage checkout page, the next step does not load and the page get stuck there. I inspected the page using Chrome Inspect option and saw these errors:
form.js:41 Uncaught TypeError: Cannot read property 'select' of undefined
at t.init (form.js:41)
at t.initialize (form.js:37)
at t (prototype.js:1)
at (index):1426
init @ form.js:41 initialize @ form.js:37
t @ prototype.js:1
(anonymous) @ (index):1426
popup.js:2 Uncaught ReferenceError: jQuery is not defined
at popup.js:2
(anonymous) @ popup.js:2
prototype.js:1 Uncaught TypeError: e is not a function
at t.initialize (prototype.js:1)
at new t (prototype.js:1)
at t.save (opcheckout.js:361)
at HTMLButtonElement.onclick ((index):609)
Now I do not know how to correct these errors, but I feel these are causing the page to stuck. Some help would be highly appreciated.
My website : http://makimus.com
Thank you!
Upvotes: 0
Views: 668
Reputation: 8050
Two different versions of jQuery are loaded. This might cause a conflict. In your case social login is adding another jQuery version.
Find the layout file at app/design/frontend/base/default/layout
and copy it to app/design/frontend/[your_theme]/[your_package]/layout
and remove the part that loads jQuery.
Upvotes: 1