The following MySQL query deletes all rows from the Magento compare list table.
1 |
delete from catalog_compare_item; |
The following MySQL query deletes all rows from the Magento compare list table.
1 |
delete from catalog_compare_item; |
Using the following code you can obtain the Magento compare list link.
1 |
Mage::helper('catalog/product_compare')->getListUrl(); |
The Magento compare list link is shown on the category page by default. Using the following code you can add it to the Magento product page as well.
1 |
<a href="<?php echo Mage::helper('catalog/product_compare')->getAddUrl($_product);?>">link text</a> |