I have used the following to hide my price value = 0.00
Got the element property from
www.hikashop.com/support/documentation/157
price_value
Made a template override for
templates/mytemplate/html/com_hikashop/product/listing_price.php
Then after line 46
<?php
if(empty($this->row->prices)){
echo JText::_('FREE_PRICE');
}
Add the following
if (($this->row->prices->price_value == 0.00 )){
echo JText::_('FREE_PRICE');}
I then changed the language value to "Call for Price" in the joomla Language override.
Can any of the devs shed any light as to why Hikashop is ignoring the "Display 'add to cart' button for free products = No" Setting
Thanks