Hello,
For remove some values from frontend show will need edit file vehiclemanager.html.php in it function "displayVehicle"
In it in yours case need change:
code:
Code: |
<?php } if(trim( $vehicle->vcondition)){ ?>
|
to
Code: |
<?php } if(trim( $vehicle->vcondition) === "123"){ ?>
|
remove code:
Code: |
<tr bgcolor = "#cccccc">
<td>
<strong><?php echo _VEHICLE_MANAGER_LABEL_LISTING_TYPE; ?></strong>
</td>
<td align="left">
<strong><?php echo $vehicle->listing_type; ?></strong>
</td>
</tr>
|
change code:
Code: |
<?php if(trim($vehicle->price_type)){ ?>
|
to
Code: |
<?php if(trim($vehicle->price_type) === "123"){ ?>
|
Thanks,
OrdaSoift team