nicolas wrote: Hi,
You need to edit the file "listing_img_title" of the view "product" via the menu Display>Views and add your text just before the price display block of code.
Thanks for the tip. I added the text "from " right here in that file:
</div>
</div>
<!-- EO PRODUCT IMG -->
from
<!-- PRODUCT PRICE -->
<?php
}
if($this->params->get('show_price','-1')=='-1'){
$config =& hikashop_config();
$this->params->set('show_price',$config->get('show_price'));
}
if($this->params->get('show_price')){
$this->setLayout('listing_price');
echo $this->loadTemplate();
}
And it works, but the "from " is on a line by itself. (See the attached screen shot.) Which is OK if that is the only way it will work, but I would really like it to be on the same line as the price, for example, "from $8.95 plus shipping"
Is there any other place in the view file I could insert that text?
Thank you