Hi,
I’ve upgraded to Magento 1.8.0 recently. Since that I can’t buy any product in my JM_Siotis store. On the last step of the Checkout it loads but the Order is not placed.
I’ve disabled all extensions => Did not help.
I’ve completely disabled the jm_siotis Theme => Checkout with Standard Magento Theme Works.
I’m shortly before Go-Live of my shop and it would be great to have a solution here.
Thanks for any help
Regards
Daniel
3 answers
Hi Daniel,
you can open the file of app\design\frontend\default\jm_siotis\layout\check out.xml there you look for these blocks
HTML Code:
<block type="page/html_wrapper" name="checkout.progress.wrapper" translate="label"> <label>Checkout Progress Wrapper</label> <action method="setElementId"><value>checkout-progress-wrapper</value></action> <block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml"/> </block>
change it to
HTML Code:
<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml"> <block type="checkout/onepage_progress" name="billing.progress" template="checkout/onepage/progress/billing.phtml"></block> <block type="checkout/onepage_progress" name="shipping.progress" template="checkout/onepage/progress/shipping.phtml"></block> <block type="checkout/onepage_progress" name="shippingmethod.progress" template="checkout/onepage/progress/shipping_method.phtml"></block> <block type="checkout/onepage_progress" name="payment.progress" template="checkout/onepage/progress/payment.phtml"></block> </block>
I hope the change help
Hi Sherlock,
that didn’t help. I’ve wrote you a PM to discuss some 1.8.0 related topics.
Regards
Daniel
Ok I found the solution. Here is my SVN log
Code:
r7 | glueck | 2013-10-14 23:54:32 MESZ Changed paths: M /trunk/phunkmastersII/app/design/frontend/default/jm_siotis/template/checkout/onepage/review/info.phtml Updated from 1.7.0 to 1.8.0 Fixed the problem: The last step in Checkout did not work, could not accept Order conditions or send place the order ----------------------------------------------------------------------------
Had to replace
Code:
<script type="text/javascript"> //<![CDATA[ review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements')); //]]> </script>
with
Code:
<script type="text/javascript"> //<![CDATA[ review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder', array('form_key' => Mage::getSingleton('core/session')->getFormKey())) ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements')); //]]>
This question is now closed