OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?

VehicleManager component support

Go to bottom Favoured: 0

How to I remove "# Vehicle"

dandollinger (Visitor)
Posts: 0
graphgraph
User Offline
How to I remove "# Vehicle" 13 Years, 2 Months ago
Karma: 0  
How to I remove "# Vehicle" Column from Category view?
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:How to I remove "# Vehicle" 13 Years, 2 Months ago
Karma: 101  
Hello,


sorry not understand what you means, in Vehicle manager frontend not show so column

Vehicle manager - open source so you self can change all what wish.

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
dandollinger (Visitor)
Posts: 0
graphgraph
User Offline
Re:How to I remove "# Vehicle" 13 Years, 2 Months ago
Karma: 0  
Here is a link to the page
iddrivethat.com/index.php?option=com_veh...anager&Itemid=37
The Column that says "# Vehicle" is not wanted by my friend. What file is that located that I can remove it from? The line of code that I can "//" would be helpful too.
Thank you
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:How to I remove "# Vehicle" 13 Years, 2 Months ago
Karma: 101  
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
Logged Logged
The administrator has disabled public write access.
Go to top
»