Agile PrestaShop Quantity Discount Indicator Module
|
AGILE-30
This is PrestaShop module which allows you to display the lowest price of quantity discount pricing on a differnt page, like Home Featured, Category Product Listing, and search results. It makes it easiser for the customer to choose the best price by placing large qauntity orders.
PrestaShop 1.4x/1.5x/1.6x
Features
Will display the lowest price quantity discount price with the prefix "From", such as "From $125.68" on product list pages.
Will display quantity discount price list with detailed informaiton - see attached screen images.
Is configrable to choose option to hide original PrestaShop quantity discount tan on Product Pages.
Is configurable to choose option to display or not at the following locations:
- Home Featured
- Product List - Category or Search Result
- Product Details
Supports product attribute combinations - Quantity discount price information on product detailed page will be dynamically changed when user changes combination of attributes.
Demo Site
You can request demo site access from the module description page.
Screenshot Images
PrestaShop 1.6x - Yes
PrestaShop 1.5x - Available*
PrestaShop 1.4x - Available*
PrestaShop 1.3x - No
*Avaliable - Please purchase current version of the module, then contact us with your order # and the version of your PrestaShop, we will send you the correct package of the module that works for your PrestaShop store.
Version 1.5.0.1 - 2015.06.17
Please see here our general installation guide
A. New installation of agile module
Other Configuration Notes:
Additional installation instructions
====================================
1. In order to show "From XXXX" on product list, please follow instructions below
A. For each file of following
YourStoreRoot/themes/YourStoreThemme/product-list.tpl
YourStoreRoot/modules/homefreatured/homefreatured.tpl
YourStoreRoot/themes/YourStoreTheme/modules/homefreatured/homefreatured.tpl (if this file exists)
B. Find following two lines
{foreach from=$products item=product name=.................. THE LINE CONTINUES .............
<li class="ajax_block_product {if $smarty.foreach.................. THE LINE CONTINUES .............
C. Insert following lines after the two line you found at above B.
{if isset($is_agilequantitydiscountindicator_installed)}
<script language="javascript" type="text/javascript">
$(document).ready(function()
{ldelim}
getQDIPriceForList({$product.id_product});
{rdelim}
);
</script>
<div id="div_aqdi_{$product.id_product}" title="{$prefix_text_for_list}" price="{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}"></div>
{/if}
2. If you do not like position the indicator is displayed at defailt HOOK, you can changed it by manually modify the product.tpl file.
A. Clear checkbox of setting "Sse Default HOOK" at module configuration screen
B. Place {$HOOK_AGILE_QUANTITY_INDICATOR} to your favourite locations in following file
/YourStoreRoot/themes/YourStoreTheme/product.tpl