How can i add a new price template to the category view (template/catalog/product/list.phtml) without changing the price template that is used in (template/catalog/product/view.phtml)? both files uses the template/catalog/product/price.phtml, but i need a separate price template in template/catalog/product/list.phtml.

Best regards,

Fluxxi

link|improve this question

80% accept rate
Here's a similar question asked and answered with a nice xml solution that could be helpful: stackoverflow.com/questions/2911615/… – ccondrup Mar 29 at 12:28
feedback

2 Answers

up vote 0 down vote accepted

Copy app/code/core/Mage/Catalog/Block/Product.php to app/code/local/YourModule/Catalog/Block/Product.php(about the detail of making your own module, you should see other document).

In the copied file, about Line 61, change

public function getPriceHtml($product)
    {
        $this->setTemplate('catalog/product/price.phtml');
        $this->setProduct($product);
        return $this->toHtml();
    }

to

public function getPriceHtml($product)
    {
        $this->setTemplate('catalog/product/your_price.phtml');
        $this->setProduct($product);
        return $this->toHtml();
    }

you can custom the view of price in your_price.phtml.

link|improve this answer
Never touch core files! These changes will be overridden with the next upgrade. It would be a far better to copy the price.phtml template file to a custom theme and edit it there. Anyway, the question was how to change the template just for the product list page, not for every page. – Simon Aug 18 '11 at 8:22
@Simon, yeah, you're right, my apologize for the former advise, so make it a local block is a more suitable way. – Michael Bai Aug 18 '11 at 8:51
I've update the answer, please follow the new answer. – Michael Bai Aug 18 '11 at 8:55
Much better :-) Although I think that this does not answer the question because it changes the template for all areas... – Simon Aug 18 '11 at 9:28
Thanks a lot, now I can finally resume work... – Fluxxi Aug 18 '11 at 11:02
feedback

It is not a really nice solution, but you could copy price.phtml to your custom theme and then check whether you are on a category page with:

$handles = $this->getLayout()->getUpdate()->getHandles();
if (array_search('catalog_category_view', $handles)) {
    echo 'here you can do other things';
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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