I am having a problem with my checkout page. For the life of me I can’t figure out why it won’t move on to the Payment screen. It loads the other sections fine but once you save the Shipping Methods it says loading and stays on the shipping methods and doesn’t make the payment area active. I have looked at both the default Magento theme and mine and I can’t figure out what might be the difference. I haven’t modified any of the checkout page templates so that can’t be it and I swapped the CSS in for both and that didn’t cause a problem. If anyone can please take a look at it I would be very appreciate. Here is my test site:
I only have one product under the category deer labeled test. If someone can just add that to a cart and checkout and just see if they notice anything in the code or anything obvious. Thanks guys!
I have solved this problem, was a pain but I figured out that if you change the page template of the checkout page it will break. I changed from the 2columns-right.phtml in the checkout.xml layout to the 1column.phtml. The reason that this broke is because of the right order progress section. The opcheckout.js will be wanting to reload the progress section every time you move a step but if the progress section isn’t there it will not be able to move on past the shipping methods (if you don’t do a separate shipping address). To fix this, I did two things (both might not be needed). In the layout xml I did an unsetChildren on the progress sections (might not actually be needed) and in the opcheckout.js I commented out the this.reloadProgressBlock(); lines. That will let it move on and use a different layout.