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

VehicleManager component support

Go to bottom Favoured: 0

$ symbol in price

vertexpakistan (Visitor)
Posts: 0
graphgraph
User Offline
Re:$ symbol in price 13 Years, 5 Months ago
Karma: 0  
Dear Admin i try this and work fine but now we see only sign don't show price like only show $
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8366
graph
User Offline Click here to see the profile of this user
Re:$ symbol in price 13 Years, 5 Months ago
Karma: 102  
can you give admin access to yours site - ?

With that we will can check where error ?

acdount details - you can send with help ordasoft Contact Form

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:$ symbol in price 13 Years, 5 Months ago
Karma: 0  
Yes this does work!

Now however how do I add "a month"?

Is there a way to change the Price field to allow text or is there any way to add another price type in addition to
"starting"
"negotiable"

ie. "monthly lease"

Appreciate your help

-jon

www.new-car-brokers.com
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8366
graph
User Offline Click here to see the profile of this user
Re:$ symbol in price 13 Years, 5 Months ago
Karma: 102  
Hello,

for vehicle Manager softare

Now however how do I add "a month"?
Sorry not understand what you mean

Is there a way to change the Price field to allow text or is there any way to add another price type in Vehicle Manager addition to
"starting"
"negotiable"


You need go to file
{yours site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.php

find rows
Code:

    $test[] = mosHtml::makeOption('negotiable', _VEHICLE_MANAGER_OPTION_NEGOTIABLE);
    $test[] = mosHtml::makeOption('starting', _VEHICLE_MANAGER_OPTION_STARTING);



and change it to some like:
Code:

    $test[] = mosHtml::makeOption('negotiable', _VEHICLE_MANAGER_OPTION_NEGOTIABLE);
    $test[] = mosHtml::makeOption('starting', _VEHICLE_MANAGER_OPTION_STARTING);
    $test[] = mosHtml::makeOption('monthly lease', 'monthly lease');



also for file:
{yours site}/components/com_vehiclemanager/vehiclemanager.php

you need find row:
Code:

  $price_type['negotiable']= _VEHICLE_MANAGER_OPTION_NEGOTIABLE;
  $price_type['starting']= _VEHICLE_MANAGER_OPTION_STARTING;



and change to:
Code:

  $price_type['negotiable']= _VEHICLE_MANAGER_OPTION_NEGOTIABLE;
  $price_type['starting']= _VEHICLE_MANAGER_OPTION_STARTING;
  $price_type['monthly lease']= "monthly lease";



also rows
Code:

        $test[] = mosHtml::makeOption('negotiable',_VEHICLE_MANAGER_OPTION_NEGOTIABLE);
        $test[] = mosHtml::makeOption('starting',_VEHICLE_MANAGER_OPTION_STARTING);


change to

Code:

        $test[] = mosHtml::makeOption('negotiable',_VEHICLE_MANAGER_OPTION_NEGOTIABLE);
        $test[] = mosHtml::makeOption('starting',_VEHICLE_MANAGER_OPTION_STARTING);
        $test[] = mosHtml::makeOption('monthly lease','monthly lease');



But firest please backup files

Thanks,
OrdaSopft 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:$ symbol in price 13 Years, 5 Months ago
Karma: 0  
Thank You - Being a novice, I will make sure to backup everything beforehand.

By the way I really like the "Scroller" Module, but it would be nice to add the $+price under each car. Is there an updated Scroller Module with this option or is this just a matter of adding a few lines of code?

Greatly appreciate your comments.

-jon
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8366
graph
User Offline Click here to see the profile of this user
Re:$ symbol in price 13 Years, 5 Months ago
Karma: 102  
hello Jon,

For add Price to scroll module - need edit code in file mod_vehiclemanager_scroller.php

Thanks
Andrew
Logged Logged
The administrator has disabled public write access.
Go to top
»