Hello,
We have special 2 fields:
1 for price value , 2 for price currency - with help that we can do search by price and do ordering bu Price.
If for you no need Currency field.
Please upgrade yours layout and set at all place show $
For that you need op[en file:
{yours site}/components/com_vehiclemanager/vehiclemanager.html.php
and at all places where you see "priceunit", set for layout "$"
e.g. code
[code]if ($row->price!=''||$row->priceunit!=''
echo $row->price." ".$row->priceunit;[/code]
need replace to
Code: |
if ($row->price!=''||$row->priceunit!='') echo $row->price." $";
|
Thanks,
OrdaSoft team