1
votes

I have a magento muti store.

I am using same theme for all of my store

. All my store working properly except one, the problem is that,

my onepage checkout not working.

When I click on procceed to checkout the page redirects to checkout page, but it is not working.

As default checkout method is open, but not in my site.

It was working before one day. Suddenly stopped working.

When I checked the errors in chrome debug mode, there showed an error,

"Uncaught ReferenceError: Accordion is not defined ".

Is this error happen because of this Javascript error? How do I solve it? Hope you guys can help me. Thank you

3

3 Answers

1
votes

it seems that you jQuery library or UI library is not loading properly - verify that the

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js" type="text/javascript"></script>

are in the right order - jquery first then the ui, and whether those files are accessible from this particular website/storeview

0
votes

You need to update following files from fresh magento installed. this files responsible for checkout step.

app/code/core/Mage/Checkout/Model/Type/Onepage.php
app/code/core/Mage/Checkout/controllers/OnepageController.php
0
votes

This was the problem from the server people and they rectified it. Thanks guys.