Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to display only products which have a special price (only using special price attribute, not from and to date).

I would like to display these products in a category or a CMS page.

Someone have the solution ?

Magento 1.6

Thank you for your help Quentin

share|improve this question

2 Answers

I'm not 100% sure what your trying to accomplish, but keep in mind that a product only have a 'special price' between a certain date, so without a date that 'special price' could be past, present or future price

Try something like

 $_productCollection = Mage::getResourceModel('catalog/product_collection')
                          ->addAttributeToSelect(array('name', 'price', 'special_price', 'small_image', 'status')
                          ->addAttributeToFilter('special_price', array('gt' => 0));

?>

See

share|improve this answer

Our extension creates a page that only displays products that are on sale.

http://store.redstage.com/products-on-sale.html

I hope this helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.