Hi
I needed to have a couple of options for the PRICE_BEGINNING string ie "from" and " "
To do this i Changed the following line in the Listing_Price view
echo JText::_('PRICE_BEGINNING');
to
if(isset($this->element->main)) echo JText::_($this->element->main->salemethod1);
elseif(isset($this->row)) echo JText::_($this->row->salemethod1);
else echo JText::_($this->element->salemethod1);
$i=0;
salemethod1 is then set up as a custom backend field with the two options.
This works fine but my problem is that i only want this to display in the category listing and not on the product page.
How would I achieve this?