Issue to update shopping cart quantity in magento -
To solve the issue go to your theme's cart.phtml file find the form tag then
add
<?php echo $this->getBlockHtml(\'formkey\') ?>
after start form tag like -
<form action=\"<?php echo $this->getUrl(\'checkout/cart/updatePost\') ?>\ method=\"post\">
<?php echo $this->getBlockHtml(\'formkey\'); ?>
I think it may help you....:)
0 Comment(s)