In magento 1.8.1, there are the following issues and how to solve it.
I have fixed for that the copy the
app\design\frontend\default\modern\layout\checkout.xml file and replaced with the your current theme in
app\design\frontend\default\yourthemename\layout\ and placed it. and now the shipping method is working properly.
When we are update the shopping cart quantity it is not update the quantity value.
for updating the shopping cart quantity you have to place the following code into the below file.
app\design\frontend\default\yourtheme\template\checkout\cart.phtml in that file around at 47 line
<form action="<?php echo $this->getUrl('checkout/cart/updatePost') ?>" method="post">
after that place the following code.
<?php echo $this->getBlockHtml('formkey'); ?>
,and now its working.
After the checkout process place order button is not working.
for that we have to change the following file:
app\design\frontend\default\yourtheme\template\checkout\onepage\review\info.phtml and
change the code:
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'));
after change the place order button is working properly.
Copying the checkout.xml file to the current theme from rwd (1.9) worked great!
ReplyDeleteJust make sure you flush your cache and reindex all and it should work just great!
Thanks!
Thank you !!!
ReplyDeletethanks you so much !!!!!!!!!!!!!!!!!!
ReplyDeleteawesome buddy...!
ReplyDeleteMany Thanks to you
This comment has been removed by the author.
ReplyDelete