Vsourz_Hot_Deals

Magento Extension
Download latest - 1.0.0

Product Deals:

Create any number of deals using our Product Deals extension. It will provide you the ability to list your products with Special Prices in the Deals section. It will encourage customers to buy from the website and help enhance your sales.

It will take 10 mins to setup the product deals on your website. Follow these steps to have it setup.

1) Download the extension from Magento Connect
2) Note the category Id for Product deals category
3) Do general setting for the extension from System >> Configuration
4) Add the Code Snippet given below to show the product deals on frontend.

Features
=======
1. Categorized products deals
2. Slide and Listing layout
3. Show countdown - Flexible countdown timer(Days:Hours:Minutes:Seconds)
4. Shows discount percentage and discount amount on product listing page
5. Facility to limit number of products displayed
6. Responsive layout
7. Support all types of product (Simple, Virtual, Downloadable, Configurable, Grouped, Bundled)
8. Easy to install and easy to upgrade with no CORE code modifications
9. Easy to customize front-end via HTML/CSS

How to use?
==============

1) Install extension from Magento Connect

2) Goto Catalog >> Manage Categories. You will see a category named Product Deals created. Copy the ID of the category.

3) Go to : System-> Configuration-> Vsourz Deals-> Product Deals and follow below steps

**** General Setting
a. Load JQuery Library: Select YES if JQuery library in not included in your Magento Project

b. Load OwlCarousel JS/CSS: If you have already included OwlCarousal then select "No" otherwise "Yes"

c. Category Id: Insert the category Id of the product deals category.

Please Note: This is a default category id. To list the products of particular category, you can override the default id from the code snippet given below.

d. Product Per Row: Enter number of products you want to show in single row. Supports upto fours products per row

4) Enter the Special Price, its Start date and End date to list the product in Deals section automatically.

How to call the deal section on frontend?

**** Shortcodes ****
You can use below code snippet to display deals products on frontend. Any number of categorised deals can be created on website.

1) Use product_count to display limited number of products in this section product_count = 0 will display all products in that category

2) To create separate deals based on the category, you will have to mention the category id in the code snippet while calling it.
Use parameter category_id = "CAT ID"

1. Deals list layout

Admin code: {{block type="vsourz_deals/deals" name="deals-products" template="vsourz/deals/deals.phtml" title="Hot Deals List"}}

XML code: < block type="vsourz_deals/deals" name="deals-products" template="vsourz/deals/deals.phtml" > < action method="setTitle">< title>Deals List< /title>< /action> < action method="setCategoryId">< category_id>60< /category_id>< /action> < /block>

PTHML code: echo $this->getLayout()->createBlock('vsourz_deals/deals')->setCategoryId('1')->setTitle('Hot Deals')->setTemplate('vsourz/deals/deals.phtml')->toHtml();

2. Deals Slide Layout

Admin code: {{block type="vsourz_deals/deals" name="deals-products" template="vsourz/deals/deals-slider.phtml" title="Hot Deals"}}

XML code: < block type="vsourz_deals/deals" name="deals-products" template="vsourz/deals/deals-slider.phtml" > < action method="setTitle">< title>Deals List< /title>< /action> < action method="setCategoryId">< category_id>60< /category_id>< /action> < /block>

PTHML code: echo $this->getLayout()->createBlock('vsourz_deals/deals')->setCategoryId('1')->setTitle('Hot Deals')->setTemplate('vsourz/deals/deals-slider.phtml')->toHtml();

Please Note: In the XML code, we have intentionally placed space in the XML tags. Please remove the spaces while adding the code.

Releases (1)

Date Version Notes
2015-05-27 1.0.0

This is a First Release !!