Magento – Onepage checkout not working after upgrade/update Magento 1.8

We have resolve the issue with top menu navigation after upgrade magento to least version. Just recently I get new issue with checkout page that, step 3 Shipping Method is not working after upgrade magento 1.8 with my custom theme. Checkout process is stuck on step 3 Shipping Method.

After exploring web and debugging the code I have found solution. In order to resolve this issue you just need to add new class to html tag fieldset as shown below,

Go to /app/design/frontend/base/default/template/checkout/onepage/payment.phtml

look for the code

<fieldset>
<?php echo $this->getChildHtml('methods') ?>
</fieldset>

change it to this

<fieldset id="checkout-payment-method-load">
<?php echo $this->getChildHtml('methods') ?>
</fieldset>

I hope this would resolve your issue….

22 thoughts on “Magento – Onepage checkout not working after upgrade/update Magento 1.8

  1. Hey Tech Bandhu,

    What did work for me, which I found while searching for a solution to my problem, is the following:

    – Go to directory: /app/design/frontend/YOURSITE/default/layout/
    – See if there are any files with the name “paypal.xml” and “checkout.xml” and delete them
    – Of course make of those two files

  2. I don’t know how to tell you my thanks. I have been working on it for two days, now you saved me, thank you.

Leave a reply to sathish Cancel reply