Ok thanks, vvut it's difficult to find the good part of the php code
For the Vehicle List:
In the PHP code it's very easy to remove a part of the code to hide a field( a column ) but How to add column I have found the "hits" part and I would like edit to show Mileage, Maker, Vehicle type and Year of issue.
The php code for show "Hits"
Code: |
if($params->get('hits')): ?>
<div class="col_10_11 span2">
<span class="col_10">
<?php echo "<img src='" . $mosConfig_live_site . "/components/com_vehiclemanager/images/hits.png' name='image' border='0' align='middle' />" . " " . _VEHICLE_MANAGER_LABEL_HITS; ?>
</span>
<span class="col_11">
<?php echo $row->hits; ?>
</span>
</div>
|
For the PDF:
I have found how to add columns but not how show the results,
This is the part of the document I have found
Code: |
<div id="list">
<table class="basictable_03" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="10%" height="20" class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
<?php echo _VEHICLE_MANAGER_LABEL_COVER; ?>
</td>
<td width="40%" height="20" class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
<?php echo _VEHICLE_MANAGER_LABEL_TITLE; ?>
</td>
<td width="16%" height="20" class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
<?php echo _VEHICLE_MANAGER_LABEL_MAKER . ", " . _VEHICLE_MANAGER_LABEL_MODEL; ?>
</td>
<?php
if ($params->get('show_pricerequest')) {
?>
<td width="14%" height="20" class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
<?php echo _VEHICLE_MANAGER_LABEL_PRICE; ?>
</td>
|
LeParcAuto