OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Increase options selected number of cylinders (0 viewing) 

VehicleManager component support

Go to bottom Favoured: 0

Increase options selected number of cylinders

linkteam (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Increase options selected number of cylinders 12 Years ago
Karma: 0  
Good evening, we need to increase the options of the cylinder number of vehicles also include cars that have 2 or 3. How can we do?

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:Increase options selected number of cylinders 12 Years ago
Karma: 101  
hello,

For add correct cylinder list for every car in vehicle manager you need open file:
{yours site]/administrator/components/com_vehiclemanager/admin.vehiclemanager.php

Find in it code:
Code:

    $numcylinder[] = mosHtml::makeOption('4', "4");
    $numcylinder[] = mosHtml::makeOption('5', "5");



And replace it to code:
Code:

    $numcylinder[] = mosHtml::makeOption('3', "3");
    $numcylinder[] = mosHtml::makeOption('4', "4");
    $numcylinder[] = mosHtml::makeOption('5', "5");



If you have Pro version - you need do exactly so for file:
{yours site]/components/com_vehiclemanager/vehiclemanager.php

Thanks,
OrdaSoft team
Logged Logged
Last Edit: 2012/03/23 10:57 By admin.
The administrator has disabled public write access.
Go to top
»