hello,
For hide vehicle count column in Vehicle manager at site frontend, in categories view you need go to:
{yours site}/components/com_vehiclemanager/
file: "vehiclemanager.html.php"
function: "listCategories"
and remove below code
Code: |
<td height="20" width="10%" class="sectiontableheader<?php echo $params->get( 'pageclass_sfx' ); ?>">
<?php echo _VEHICLE_MANAGER_LABEL_VEHICLES;?>
</td>
|
next go to function: "showInsertSubCategory"
and remove below code
Code: |
<td align="left" width="10%">
<?php if ($cat_all[$i]->vehicles == '') echo "0";else echo $cat_all[$i]->vehicles;?>
</td>
|
thanks,
OrdaSoft team