Magento 1.8 – Fix Clear Shopping Cart Not Working

ce-1.8.1.0magento-1.8shoppingshopping-cart

My cart.phtml already have <?php echo $this->getBlockHtml('formkey'); ?> but still clear shopping cart & update shopping cart is not working.

Please, give me better solution over this.
Thank You in advance!

Best Answer

In your theme directory, in the file:

/app/design/frontend/yourthemepackage/default/template/checkout/cart.phtml  

or in the file:

/app/design/frontend/default/yourtheme/template/checkout/cart.phtml 

Just place on line 50 just after getUrl('checkout/cart/updatePost') ?>" method="post"> paste the below code:

<?php echo $this->getBlockHtml('formkey'); ?>

it will work fine now.

Related Topic