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

VehicleManager component support

Go to bottom Favoured: 0

Hide!

leo5city (User)
Expert Boarder
Posts: 92
graphgraph
User Offline Click here to see the profile of this user
Hide! 11 Years, 8 Months ago
Karma: 0  
How hide these colummns?
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:Hide! 11 Years, 8 Months ago
Karma: 101  
Hello,

True say will need edit some place so I will show to you only how you can do that

You need open file
{yours site}/components/com_vehiclemanager/vehiclemanager.html.php

find function "displayVehicles" - and edit code in it. This function responsible for that layout

e.g. for show car model - responsible rows(there are we show column head) :
Code:

                            echo "<td width='15%' class='sectiontableheader'{$params->get('pageclass_sfx')}>";
                              echo _VEHICLE_MANAGER_LABEL_MAKER.", "._VEHICLE_MANAGER_LABEL_MODEL;
                            echo "</td>";"



so you need remove that (there are we show column content)

and also (there are we show column content)
Code:

                            echo "<td width='15%'>";
                              if ($row->maker!=''||$row->vmodel!='') echo $row->maker.", ".$row->vmodel;
                            echo "</td>";



for other columns full exactly

But first please do file backup

Thanks,
OrdaSoft team
Logged Logged
Last Edit: 2012/07/13 09:41 By admin.
The administrator has disabled public write access.
normanbrady (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Re:Hide! 10 Years, 6 Months ago
Karma: 0  
Can somebody tell me what need to do here because I not understand it.
I can hide the title of the column but the content is still there.
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:Hide! 10 Years, 6 Months ago
Karma: 101  
Hello,

Do you remove both code parts ?

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»