Catalog Products Quicklook 1.0.0

Catalog Products Quicklook (also known as QuickView) is Magento extension that allows to load extra product attributes as modal window on category, search results or tag page.
Magento Compatibility: 1.6.x, 1.5.x, 1.4.x, 1.3.x
Available Licences:
Single Domain
Multiple Domain / Developer
$50.00

Catalog Products Quicklook

Screenshots

With Catalog Products Quicklook you can provide your customers more information about your products with less clicks.
For example, you can show addon images for your product, extra product attributes such as technical specs,  available colors or sizes.

Our goal is to let our customers maximum info about our products as quickly as it possible because they are impatient. At the same time we are limited by design, by page size, by page load time lastly.

Catalog Products Quicklook extension uses AJAX technology  to load additional product attributes, therefore it will not require extra load time neither increase page weight.

View demo

To install the extension simply upload files to the root directory of your Magento installation. Extension has no backend configurations.

To insert quicklook link into category product grid open: app\design\frontend\yourtheme\yourtheme\template\catalog\product\list.phtml
and insert:

Quicklook

between:

<?php foreach ($_productCollection as $_product): ?>
        <li class="item&lt;?php if( ++$_iterator == sizeof($_productCollection) ): ?&gt; last&lt;?php endif; ?&gt;">
                /* */
        </li>
<?php endforeach; ?>

To make it like on demo site, open same file: app\design\frontend\yourtheme\yourtheme\template\catalog\product\list.phtml
Find:
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>

Replace by:

<div class="quick-image">
       <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
       <a href="#" class="customy-quicklook" productID="<?php echo $_product->getId() ?>" onclick="return false;"><span>Quick Look</span></a>
</div>

Version 1.0.0

  • Extension release

Version 1.1.0

  • Add code to template using helper - more easy to install in templates
  • Add ability to render popups in html without need to use AJAX

Write Your Own Review

Only registered users can write reviews. Please, log in or register

Recent blog post: 

Redirect to specific page after newsletter subscription

Blog