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

VehicleManager component support

Go to bottom Favoured: 0

Photo upload

Saulevas (Visitor)
Posts: 0
graphgraph
User Offline
Photo upload 12 Years, 11 Months ago
Karma: 0  
Hello everyone,

I'm having this issue with Vehicle Manager Pro, which in fact is a great plug-in, except for a few bugs(?). One of which is that I can't understand how on earth should I upload photos for my vehicles... Ok, so I go to Components/Vehicle Manager/Vehicles click on the vehicle I want, then at the very bottom of the page I find a "Photo manage" section where I should be able to upload one main photo and add more photos for my vehicle gallery... That's cool, but...there's only "Browse" button for selecting images and NO "Upload" button for uploading.. What the hell?
Also, I'm browsing through the code looking for a way to disable "Hits" section on the frontpage because I don't need customers to see this. Can you tell me where can I find this in a code? What should I delete or change?

Thanks in advance!

Almost a happy user Saulius
Logged Logged
The administrator has disabled public write access.
Saulevas (Visitor)
Posts: 0
graphgraph
User Offline
Re:Photo upload 12 Years, 11 Months ago
Karma: 0  
Oh, ok so I found a way to upload. It seems that I hade no permission to a specific folder in com_vehicle manager on my server. So had to CHMOD it.
However what about to getting rid of "HITS" and "TITLE" columns in the frontend, and making the photo active not the title???
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:Photo upload 12 Years, 11 Months ago
Karma: 101  
Hello,

Ours Vehicle manager software open source, so you will can self add all changes or you can ask customer version from OrdaSoft

In Vehicle manager software for hid Hits - you need:
open file:
{yours site}/components/com_vehiclemanager/vehiclemanager.php

and all places where you find code:
Code:

  $params->def( 'hits', 1 );

replace to code
Code:

  $params->def( 'hits', 0 );


Title - you can hide with this help. You will need self recheck code. because will need change now one place.
You will need recheck below file:
{yours site}/components/com_vehiclemanager/vehiclemanager.html.php

For set link to image you will need in file
{yours site}/components/com_vehiclemanager/vehiclemanager.html.php
find all places like:
Code:

                                    echo '<img src="' .
                                    $mosConfig_live_site . '/components/com_vehiclemanager/photos/'
                                    . $file_name ."_mini" . $file_type . '" border="0" class="little">';



and replace it to
Code:

                                    echo '<a href="'.sefRelToAbs($link) .'" class="category'.  $params->get('pageclass_sfx').'">'. '<img src="' .
                                    $mosConfig_live_site . '/components/com_vehiclemanager/photos/'
                                    . $file_name ."_mini" . $file_type . '" border="0" class="little"></a>';



But Please backup files before any changes

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Saulevas (Visitor)
Posts: 0
graphgraph
User Offline
Re:Photo upload 12 Years, 11 Months ago
Karma: 0  
Thank you, people at OrdaSoft.

Everything worked just fine. I must admit you have the best support of your software Keep up the good work!
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:Photo upload 12 Years, 11 Months ago
Karma: 101  
You may vote for us on Joomla.org

Thank you !
Logged Logged
The administrator has disabled public write access.
Saulevas (Visitor)
Posts: 0
graphgraph
User Offline
Re:Photo upload 12 Years, 11 Months ago
Karma: 0  
admin wrote:
You may vote for us on Joomla.org

Thank you !


I definitely will!
Logged Logged
The administrator has disabled public write access.
Go to top
»