Hello,
For that you need open file:
{yours site}/components/com_vehiclemanager/vehiclemanager.html.php
In it find function: displayVehicle
there are start from rows:
Code: |
<div id="country1" class="tabcontent">
<table class="basictable15" align="center">
|
There are you will see rows like
Code: |
<strong><?php echo _VEHICLE_MANAGER_LABEL_MAKER; ?></strong>
|
and
Code: |
<strong> <?php echo $vehicle->maker; ?></strong>
|
so for row
Code: |
<strong> <?php echo $vehicle->maker; ?></strong>
|
you need replace to
Code: |
<?php echo $vehicle->maker; ?>
|
But rows like
Code: |
<strong><?php echo _VEHICLE_MANAGER_LABEL_MAKER; ?></strong>
|
you must not change
and these changes you need do until below rows:
Code: |
<div id="country2" class="tabcontent">
|
Please first backup that file
Thanks,
Ordasoft team