I have a scroller showing a collection of products currently on sale, which I call using the following:

$todayDate  = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
$_productCollection = Mage::getResourceModel('reports/product_collection')
    ->addAttributeToSelect('*')
    ->addAttributeToFilter('visibility', $visibility)
    ->setPageSize(4) // Only return 4 products
    ->addAttributeToFilter('special_from_date', array('date' => true, 'to' => $todayDate))
    ->addAttributeToFilter('special_to_date', array('or'=> array(
           0 => array('date' => true, 'from' => $todayDate),
           1 => array('is' => new Zend_Db_Expr('null')))
           ), 'left')
    ->addAttributeToSort('special_from_date', 'desc');
$_productCollection->load();

I then run a foreach to get the individual products:

foreach ($_productCollection as $_product)

Everything works fine, except for the price, which I would usually call using

$this->getPriceHtml($_product, true)

However this is giving me a blank. If I do a var_dump I can see that both the original price and the special price are both available, so why isn't this working? I use exactly the same code on my homepage template, which I call through the homepage CMS, and the price is shown fine (with the regular price crossed out and special price shown).

Using $_product->getFinalPrice() works fine, but only gives me the final "special" price and doesn't show the original price.

Am I maybe missing something in my xml layout that's needed to show the prices using getPriceHtml?

link|improve this question

79% accept rate
What block does $this refer to? – clockworkgeek Jan 11 '11 at 0:02
feedback

1 Answer

up vote 4 down vote accepted

The issue is that getPriceHtml() function is defined in the Mage_Catalog_Block_Product block, rather than the standard Mage_Core_Block_Template. You need to ensure that your block extends the Product block, or you can achieve that in your layout by something like:

<block type="catalog/product" name="blockname" template="path/to/template.phtml">

I haven't tested that, but it should work.

HTH, JD

link|improve this answer
Bingo. I was using core/template, so changed to catalog/product_list and now it's working. New it was gonna be something simple like that. Cheers! – JazzHands Jan 11 '11 at 16:11
feedback

Your Answer

 
or
required, but never shown

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