The customer does not want to use an automatically resized image for the tiny image in the latest product tab.
Can this be done and where do I put it?
Is there a way to specify which products show up as latest? Or is it just automatic?
Thanks
Janice
1 answer
If you want to remove re size image function in latest product images plz go to app\design\frontend\default\jm_natristemplate\joo mlart\jmcategorylist\blog_item.phtml and change this code:
Code:
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'thumbnail')->resize(60, 45)->setWatermarkSize('30x10'); ?>" alt="<?php echo $this->htmlEscape($_product->getName()) ?>"/>
to
Code:
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'thumbnail'); ?>" alt="<?php echo $this->htmlEscape($_product->getName()) ?>"/>
Is there a way to specify which products show up as latest? Or is it just automatic?
You could specific product by change "Type of product display:" in configuration of JM Category List to "Featured Product". Please follow this:
http://www.joomlart.com/forums/showt…List-Userguide
To know how JM Category List work.
Tell us if you have any problems please.