Hello,
If you read customization manual for Vihicle manager - you may add that self.
For set some default Price currency in vehicle manager at time vehicle edit for admin, you need:
- open file:
{yours site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.html.php
find function: editVehicle
In that fumction find code:
Code: |
<input class="inputbox" type="text" name="priceunit" size="15" value="<?php echo $row->priceunit;?>" />
|
and replace it to
Code: |
<?php if( $row->priceunit != "" ) { ?>
<input class="inputbox" type="text" name="priceunit" size="15" value="<?php echo $row->priceunit;?>" />
<?php } else { ?>
<input class="inputbox" type="text" name="priceunit" size="15" value="R$" />
<?php } ?>
|
But first please backup this file
Thanks,
OrdaSoft team