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

VehicleManager component support

Go to bottom Favoured: 0

Custom CSS

fleetrates (Visitor)
Posts: 0
graphgraph
User Offline
Custom CSS 12 Years, 9 Months ago
Karma: 0  
I am trying to change CSS characteristics such as the background of the the main page from whit to black and having no luck whatsoever. Also I don't care about the address of the car How do i remove this from setup as well as display. Also I want to add 2012 to the Year and can't find it. It is really agravating that I can't find a manual or sdk for this. I am very close to demanding a refund.
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:Custom CSS 12 Years, 9 Months ago
Karma: 101  
Hello,

I am sorry but all what you asked require know PHP code or CSS. That not component features. But we give for you open sours component - so you can self change all what you wish - or hire some other for that. Also you can hire us - for some custome work.

For set Background for yours site you need check how background set now in yours Joomla template. And change it in yours Joomla template!
Agsin that features from yours Template - not from component.

Most simply way check where now yours background set - use FireBug extension for fireFox.


Address we save in variable "$vehicle->vlocation"

If that variable empty - we not show it.

How do i remove this from setup - not understand what you mean, for full remove these variable need rebuild full component because that variable use in import/export/search ...


You may remove it from code for admin vehicle add by remove so code from yours file:
{yours site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.html.php

Code:

else if (form.vlocation.value == '') {

      alert("<?php echo _VEHICLE_MANAGER_ADMIN_INFOTEXT_JS_EDIT_ADDRESS;?>");
      return;  
    }



and
Code:

<tr>
      <td valign="top" align="right">
        <strong><?php echo _VEHICLE_MANAGER_LABEL_ADDRESS;?>:</strong>
      </td>
      <td align="left">
        <input class="inputbox" type="text" name="vlocation" size="80" value="<?php echo $row->vlocation;?>" />
      </td>
    </tr>



For set Year to 2012

You need open file:
{yours site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.html.php
and in it change code
Code:

for($i= 0;$num<=date('Y');$i++)

to code
Code:

for($i= 0;$num<=date('Y')+1;$i++)



Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
fleetrates (Visitor)
Posts: 0
graphgraph
User Offline
Re:Custom CSS 12 Years, 9 Months ago
Karma: 0  
Now the next issues that I have. Whenever i put characters such as $ or , in the price field it strips all characters and returns 0. Also my vehicle manager list shows 6 cars even though there is only one in the database. How do I reset that count? The last piece is moving the gallery to the top of the page as opped to the bottom.
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:Custom CSS 12 Years, 9 Months ago
Karma: 101  
Hello,

Price as you can see in Vehicle Manager now have two fields one for price value, other for price currency

so in first field you can type "123.56" at field with currency "$". That need for possible search by price

For calculate how much vehicle in some category - we - calculate all vehicle in that category and in all child categories. If some vehcle exist in two categories - it calculate as two vehcles


Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
ftl (User)
America's #1 Virtual Dealership
Junior Boarder
Posts: 21
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Fast Track Leasing Location: Florida
Re:Custom CSS 12 Years, 7 Months ago
Karma: 0  
THANKS FOR THE ADVICE ON THE YEAR!

FYI, you don't need to start at 1900- you can change that too!

best,

jon
new-car-brokers.com
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:Custom CSS 12 Years, 7 Months ago
Karma: 101  
You may vote for us extensions on joomla.org

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