EM MultiDeal Pro allows showing products on Sales with count-down clock. the extension helps customer to rapidly capture the promotional time of your sales products. This extension also optimizes your management of sales while it is still easy to use. EM MultiDeal Pro can be easily fixed css to fit your theme. It is also able to exploit Magento’s complicated features to help boosting your business.

1. GENERAL CONFIGURATION

1.1. GENERAL CONFIGURATION

EMThemes > EM Group Deals > Settings.

 Settings Page

ENABLE MULTIDEAL

Enable/Disable extension in your site.

DISPLAY IN HEADER LINKS

USE MAIN DEAL AS HOMEPAGE

NO DEAL MESSAGE

1.2. DEALS SIDEBAR CONFIGURATION

  • Enable Recent Deals Sidebar : show/hide sidebar in frontend.
  • Block Reference : show sidebar in left-right-both column .
    sample : Right

  • Position : show position sidebar column .

sample : before=”-“ to first show in sidebar

sample : after=”cart_sidebar”

  • Number Limit : limit show deals .

sample : 1 to show only deal

1.2. DEALS SIDEBAR CONFIGURATION

  • Custom Show Type Deals :

sample : Choose all

Custom Layout

Column count

Row count

Thumbnail Width

Thumbnail Height

Show Thumbnail

Show name

Show SKU

Show Review

Show Description

Show Price

Show Button Addtocart

Show Add to wishlist-compare button

Show Label

2. USAGE

CREATE DEALS

In EMThemes > EM Group Deals > New Deal

Go to “Add New Deal” page . See images below

Click “Save” to completed create new deal.

GO to “Deals Manage” page : In EMThemes > EM Group Deals > Deals Manage

3. FOR DEVELOPER

CONFIG CRONTAB’S SYSTEM
IMPORTANT : YOU MUST ENABLE CRONJOB’S MAGENTO

Config crontab in your host run file : cron.php or cron.sh

Links example :

INSERT “CLOCK COUNTDOWN” ON PHTML PAGE

Style 1 ( for category page )

isModuleEnabled('EM_Multidealpro')): ?>
getHtmlClock($_product,'short'); ?>

Style 2 ( for details page ) isModuleEnabled('EM_Multidealpro')): ?>
getHtmlClock($_product); ?>

Example for category page : open file …/template/catalog/product/list.phtml

.......


  • title="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image">
    alt="stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />



    productAttribute($_product, $_product->getName(), 'name') ?>


    getRatingSummary()): ?>
    getReviewsSummaryHtml($_product, 'short') ?>

    getPriceHtml($_product, true) ?>

    isModuleEnabled('EM_Multidealpro')): ?>
    getHtmlClock($_product,'short'); ?>

    v isSaleable()): ?>


    __('Out of stock') ?>



  • ........

    Example for details page : open file …/template/catalog/product/view.phtml
    ....... getReviewsSummaryHtml($_product, false, true)?>
    getChildHtml('alert_urls') ?>
    getChildHtml('product_type_data') ?>
    getTierPriceHtml() ?>
    getChildHtml('extrahint') ?>

    isModuleEnabled('EM_Multidealpro')): ?>
    getHtmlClock($_product); ?>

    hasOptions()):?>

    isSaleable()): ?>
    getChildHtml('addtocart') ?>
    helper('wishlist')->isAllow() || $_compareUrl=$this->helper('catalog/product_compare')->getAddUrl($_product)): ?>
    __('OR') ?>


    getChildHtml('addto') ?>
    getChildHtml('extra_buttons') ?>
    isSaleable()): ?>

    getChildHtml('addto') ?>


    ........