Hello,
you need edit default.php in next folder
your website/components/com_vehiclemanager/views/view_vehicle/tmpl
and comment for year of issue next code:
Code: |
<div class="row_inline">
<span class="col_01"><?php echo _VEHICLE_MANAGER_LABEL_TRANSMISSION_TYPE; ?>:</span>
<span class="col_02"><?php echo $transmission[$vehicle->transmission]; ?> </span>
</div>
<?php
}
$drive_type[0] = _VEHICLE_MANAGER_OPTION_SELECT;
$drive_type1 = explode(',', _VEHICLE_MANAGER_OPTION_DRIVE_TYPE);
$i = 1;
foreach ($drive_type1 as $drive_type2) {
$drive_type[$i] = $drive_type2;
$i++;
}
if ($vehicle->drive_type != 0) {
?>
<div class="row_inline">
<span class="col_01"><?php echo _VEHICLE_MANAGER_LABEL_DRIVE_TYPE; ?>:</span>
<span class="col_02"><?php echo $drive_type[$vehicle->drive_type]; ?></span>
</div
|
see attached image.
Before make any changes, please make backup of file.