Magento – How to Get Product Submit URL on Category Page

addtocartconfigurable-productmagento-1.9product-list

On product page the product form has given action = <?php echo $this->getSubmitUrl($_product) ?>. I want to get this submit url on category page for each product but on category page it returns different URL for Configurable Product. how to get the same Submit url on category page for Configurable Product.

Best Answer

use following code

<?php echo $this->helper('checkout/cart')->getAddUrl($_product) ?>

instead of

<?php echo $this->getSubmitUrl($_product) ?>

for the configurable products.

Related Topic