More Flexible Approach for Listing Sale Products in Magento

More Flexible Approach for Listing Sale Products in Magento

One of my recent articles was on the subject of sorting “On Sale” product in Magento. The following is a cleaner and more advanced look at how—with few tricks and smart moves—you can reuse existing Magento code and modify it to suit your needs.

Product can be “on sale” in two ways:

1. when an item has a special price assigned to it on the individual level, or

2. when a special promotion “covers” the item

It is important to remember that you don’t have to set up the special price on each product to get it to be on sale; you can simply create a promotion rule and say something like “Set all the products in Category X to be on sale.”

I provided few screenshots at the bottom of this article to provide a closer look at what I’m talking about. I will not go into too much details here since this is a bit more advanced HOW TO, but here is the process in a nutshell:

First, create a copy of /catalog/product/list.phtml file and name it onsale_list.phtml. Here is my version of onsale_list.phtml file.

Second,  “activate” this new file. There are few ways you can do this. Let’s say you wish to assign this onsale_list.phtml on one of our categories, named “On Sale,” for instance.

We then go to Categories > Manage Categories > On Sale… select Custom design and under Custom layout update, place the following:

product_list_toolbar

If you now go to your category On Sale, it should only show products you have assigned to category “On sale” that have a special price set to them.

If you now wish to apply Promotion rules to entire “On sale” category, then you simply assign a rule to one item, and all the items assigned to the same “On sale” category (covered by promotion rules) will be automatically listed in the grid.

Basically, the magic is in one simple IF statement

< ?php if(($_product->special_price !== null) or ($_product->_rule_price !== null)): ?>

for each block that lists products.

Check out the screenshots, they explain a lot.

On Sale 3

On Sale

Hope you find a way to try this out.  Feel free to provide some feedback or additional suggestions.

16
Top

Enjoyed this post?

Subscribe to our RSS Feed, Follow us on Twitter and spread it to your friends!

Author

Branko is Inchoo's CTO with over 3 years of active / everyday full time Magento development.

Other posts from this author

Discussion 16 Comments

Add Comment
  1. Tony

    Hi, thanks for the article. I don’t understand how adding:

    product_list_toolbar

    to the custom layout calls up the file onsale_list.phtml. Could you please help?

  2. Julien

    Hi,

    Good article but is it possible to have same behavior without create an “On Sale” category, just to put a block in a CMS page which is listing all products with a special price ?

    Thanks.

  3. Martin

    I’ve tried to follow your instructions and am running into the same problem of assigning the new onsale_list.phtml file to the category. I changed the code in the page to see if the page is called, but it still displays the list.phtml file.

    Please elaborate. Thanks.

  4. Hi. It is possible to put it just to CMS page like this:
    {{block type=”catalog/product_list” name=”specials” as=”specials” template=”templatename.phtml”}}

    but how can I handle number of products per page?
    When I normally have 30 products pre page and 20 has no special price the result will show only 10 products. The worse thing is that the number of products is on every page different.

  5. @Marting and @Tony:

    You have to tell Magento to use your new template, so what you want to place in the Custom Layout field is:

    catalog/product/onsale_list.phtml

  6. Oops, the comment system didn’t like my code snippet. 2nd try:

    catalog/product/list_sale.phtml

  7. Still no luck. Every line – except the path/to/template.phtml – should be enclosed in xml tags:
    reference name=”product_list”
    action method=”setTemplate”
    template
    catalog/product/list_sale.phtml
    /template
    /action
    /reference

  8. PS: @Branko:

    Thanks for sharing your knowledge.

    It would be very helpful if you indicated which characters/tags are allowed in your comments or how to post code.

  9. kris gale

    didn’t realize you were allowed to access ‘protected’ data members of the product object within template code… i was previously parsing the result of $this->getPriceHtml($_product,true) for instances of class=”price”, “Special Price”, and “As Low As”… $_product->sale_price, $_product->min_price is so much easier!

  10. Roger How

    I can only get this to display products with a special price and not those with a catalog price rule.

    ie this part of the statement: $_product->_rule_price !== null isn’t working. If I use it on it’s own I get no products returned even though I have a whole category discounted with a rule.

    I’m using Magneto 1.4.1.1 Could that be the problem?

    Any idea how I can get this to work?

  11. Aydin

    I am having the same problem as previous post by Roger. I am using the phtml file provided by Branko. It only shows the products that have a special price set individually, but not the ones covered by catalog price rules.

    Also running on 1.4.1.1. Any help would be appreciated.

  12. shailesh thapa

    Hi, i want to make paging on bestselling products without refreshing the pages with help of jquery.Can anyone help me.

    Thanks

  13. This is really very helpful to all magento developer.
    I feel satisfied after radeing that one.

  14. Surely you have to assign something to the toolbar to keep it in step with the displayed results?

  15. serks

    This doesn’t work for catalog price rule specials.
    I dont understand what you mean by this…

    “If you now wish to apply Promotion rules to entire “On sale” category, then you simply assign a rule to one item, and all the items assigned to the same “On sale” category (covered by promotion rules) will be automatically listed in the grid.”

    Please elaborate on this if you can Branko

    Thanks

  16. carl

    I too have tried to use catalog price rules, but with no luck. it just will not work work. v1.6

    As serks said, please elaborate Branko.

    Thanks

Add Your Comment

Please wrap all source codes with [code][/code] tags.
Top