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

VehicleManager component support

Go to bottom Favoured: 0

Advanced search

leo5city (User)
Expert Boarder
Posts: 92
graphgraph
User Offline Click here to see the profile of this user
advanced search 11 Years, 7 Months ago
Karma: 0  
On how can I hide this part relative a rentals of vehicles. I already tried firebug with no success. Can you help?
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:advanced search 11 Years, 7 Months ago
Karma: 101  
Hello,

True say that simply fix trough form edit.
Please open file:

{yours site}/components/com_vehiclemanager/vehiclemanager.html.php

and in it find function: showSearchVehicles

in it you need find rows:
Code:

                <td align="right" rowspan="2">
                    <?php echo _VEHICLE_MANAGER_LABEL_AVAILABLE_FOR_RENT;?>&nbsp;
                </td>
                <td align="right">
                    <?php echo _VEHICLE_MANAGER_LABEL_AVAILABLE_FOR_RENT_FROM;?>&nbsp;
                </td>
                <td>
                    <?php echo JHtml::_('calendar','','search_date_from','search_date_from','%Y-%m-%d', array('size'=>'17'));  ?>
                </td>



and replace to
Code:

                <td align="right" rowspan="2">
                    &nbsp;
                </td>
                <td align="right">
                    &nbsp;
                </td>
                <td>
                    &nbsp;
                </td>




and find code
Code:

               <td align="right">
                    <?php echo _VEHICLE_MANAGER_LABEL_AVAILABLE_FOR_RENT_UNTIL;?>&nbsp;
                </td>
                <td>
                    <?php echo JHtml::_('calendar','','search_date_until','search_date_until','%Y-%m-%d', array('class'=>'inputbox', 'size'=>'17')); ?> 
                </td>
                <td  align="left" colspan="1" nowrap>
                    <?php echo $years['yearlistto'];?>
                </td>



and replace to
Code:

               <td align="right">
&nbsp;
                </td>
                <td>
&nbsp;
                </td>
                <td  align="left" colspan="1" nowrap>
      &nbsp;
                </td>




But first please backup that file

Thanks,
Ordasoft team
Logged Logged
The administrator has disabled public write access.
leo5city (User)
Expert Boarder
Posts: 92
graphgraph
User Offline Click here to see the profile of this user
Re:advanced search 11 Years, 7 Months ago
Karma: 0  
Works, thanks!
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:advanced search 11 Years, 7 Months ago
Karma: 101  
Hello,

You may vote for us on joomla.org and write excellent review

if you will have some other error or questions - please write

Thanks,
OrdaSoft team
Logged Logged
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:advanced search 10 Years, 4 Months ago
Karma: 0  
I cant find theese lines.
Can you tell me in the new version where is it?
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:advanced search 10 Years, 4 Months ago
Karma: 101  
Hi,

In last version vehicle manager soft we move all view to special folder "views/"

Search view layout you need edit at:
{site}/components/com_vehiclemanager/views/show_search_vehicle/tmpl/default.php


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