- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
Magento. How to remove the “Quick View” button
November 19, 2013
This tutorial is going to show you how to remove the “Quick View” button on your Magento template.
Magento. How to remove the “Quick View” button
- To remove this button on the category pages, on your FTP go to the app\design\frontend\default\theme###\template\ajaxwishlist\catalog\product directory and open the list.php file to edit.
- Delete or comment out the following in line 81:
- Save the changes. Now, if you mouse over the product images on the category pages of your store, the “Quick View” button should disappear and if you click on it, it will open up a new page instead of the lightbox.
- To do the same for the product search pages, on FTP go to the app\design\frontend\default\theme###\template\catalog\product directory and open the list.php file to edit.
- Delete or comment out the same code in line 81:
- Save the changes.
<a href='<?php echo $this->getUrl('ajax/index/options',array('product_id'=>$_product->getId()));?>' data-fancybox-group="gallery" class='fancybox' id='fancybox<?php echo $_product->getId()?>' style=''><?php echo $this->__('Quick View') ?></a>
<a href='<?php echo $this->getUrl('ajax/index/options',array('product_id'=>$_product->getId()));?>' data-fancybox-group="gallery" class='fancybox' id='fancybox<?php echo $_product->getId()?>' style=''><?php echo $this->__('Quick View') ?></a>
Feel free to check the detailed video tutorial below: