Quick Shopping installation instructions

Thank you for downloading our magento extension. Please follow these instructions to proceed with the installation of your theme:

Turn store compilation off:

Navigate to Admin -> Tools -> Compilation and deactivate compilation mode for your store.

Copy all files into your magento directory:

Simply copy all files from "extension source x.x.x" directory into your magento store directory.

Turn your magento cache off:

Navigate to Admin -> System -> Manage Cache and deactivate cache for your store. You can enable it after extension installation will be finished.

Refresh your admin user access rights:

Simply logout from your store admin and then login back.

Next steps
  1. Navigate to System > Configuration > Templates-Master > Quick Shopping and enable extension for any store you need.
  2. Configure Quick Shopping module according to your needs.
  3. Code listed bellow should should be added to list.phtml file in order to display QuickShopping. For exampe app/design/frontend/[package]/[theme]/template/catalog/product/list.phtml.
    ~ Line 49
    <li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
    <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" 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->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" /></a>
    --> QuickShopping code should be placed there:
    echo Mage::helper('quickshopping')->getViewButton(
        $this->__('Quick View'), $_product, $this->getMode(), null, $_productCollection
    );
    
    ~ Line 93       
    <li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
    <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" 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->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" /></a>            
    --> QuickShopping code should be placed there:
    echo Mage::helper('quickshopping')->getViewButton(
        $this->__('Quick View'), $_product, $this->getMode(), null, $_productCollection
    );
    
  4. That's all. Navigate to your store and check how your store looks.
Configuration
General
  • Enabled — enable or disable extension for separate store;
Ajax window settings
  • Width — set ajax window width;
  • Height — set ajax window height;
  • Display previous and next products links — display prev/next buttons at ajax window;
  • Display product name — display product name in quickshopping window;
  • Display product media — display product image in quickshopping window;
  • Display product reviews — display product reviews in quickshopping window;
  • Display product add to cart — display add to cart block in quickshopping window;
  • Display product price — display product price in quickshopping window;
  • Display product attributes — display product attributes in quickshopping window;
  • Display Email to friend — display send to friendname in quickshopping window ;
  • Display product short description — display product short description in quickshopping window;
  • Display product full description — display product description in quickshopping window;
  • Display product additional attributes — display product additional attributes in quickshopping window;
  • Display upselling products — display product uppsell in quickshopping window;
  • Display product additional data — display product additinal data in quickshopping window;
Category page settings

Configure QuickShoppping button position:

  • Button X position with list listing activated;
  • Button Y position with list listing activated;
  • Button X position with grid listing activated;
  • Button Y position with grid listing activated;
Product page settings

Configure QuickShoppping "previous and next" products additional navigation:

  • Display previous and next products links — enable or disable additional block with previous and next products links;
  • Display 'Back to Category' link — enable or disable link to products category;
  • Pattern for the previous link — set pattern for previous product link;
  • Pattern for the next link — set pattern for next product link;
  • Pattern for the back to category link — set pattern for category link;
That's all. Navigate to your store and check how your store looks.

If you have any problems with extension installation please contact us at templates-master.com/helpdesk and we will help you with extension installation for free

Common questions and ideas

Come up with new ideas!

There are no product questions yet.

Ask Your Question

* Required Fields

Back to top