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;?>
</td>
<td align="right">
<?php echo _VEHICLE_MANAGER_LABEL_AVAILABLE_FOR_RENT_FROM;?>
</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">
</td>
<td align="right">
</td>
<td>
</td>
|
and find code
Code: |
<td align="right">
<?php echo _VEHICLE_MANAGER_LABEL_AVAILABLE_FOR_RENT_UNTIL;?>
</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">
</td>
<td>
</td>
<td align="left" colspan="1" nowrap>
</td>
|
But first please backup that file
Thanks,
Ordasoft team