We have 201 guests and 1 member online
OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
dimension photo catalogue (1 viewing) (1) Guest
VehicleManager component support
Go to bottom Favoured: 0
TOPIC: dimension photo catalogue
#1181
betteraves (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
dimension photo catalogue 1 Year, 7 Months ago Karma: 0  
Bonjour,

Les photos dans mon catalogue sont trop grandes, comment les diminuer ?
Merci d'avance.
Photos in my catalog are too big, how to decrease them?
Thank you in advance
 
Logged Logged  
 
Last Edit: 2010/10/06 05:21 By betteraves. Reason: english-french
  The administrator has disabled public write access.
#1182
admin (Admin)
Admin
Posts: 1679
graph
User Offline Click here to see the profile of this user
Re:dimension photo catalogue 1 Year, 7 Months ago Karma: 17  
Hi,

In VehicleManager Pro For change that photo sizes you need go to admin Vhicle manager frontend setting - and change size for "Thumbnail photos size"

For VehicleManager Free version you need go to admin.vehiclemanager.php find function "picture_thumbnail" and in it change all 70 - to you wish size

also yo can change photho size in file vehiclemanager.html.php function: "displayVehicles" and below code
Code:

          if($imageURL != ''){
            echo '<img src="'.
            $mosConfig_live_site.'/components/com_vehiclemanager/photos/'
            .$file_name."_mini".$file_type.'" border="0">';
          } else{
            echo '<img src="'.
            $mosConfig_live_site.'/components/com_vehiclemanager/images/';
            echo _VEHICLE_MANAGER_NO_PICTURE;
            echo '" alt="no-img_eng.gif" border="0"  />&nbsp;';
          }



change e.g. to
Code:

          if($imageURL != ''){
            echo '<img src="'.
            $mosConfig_live_site.'/components/com_vehiclemanager/photos/'
            .$file_name."_mini".$file_type.'" border="0" width="50" height="50">';
          } else{
            echo '<img src="'.
            $mosConfig_live_site.'/components/com_vehiclemanager/images/';
            echo _VEHICLE_MANAGER_NO_PICTURE;
            echo '" alt="no-img_eng.gif" border="0"  width="50" height="50" />&nbsp;';
          }



where 50 - new size

Thanks,
Ordasoft team
 
Logged Logged  
  The administrator has disabled public write access.
#1183
betteraves (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Re:dimension photo catalogue 1 Year, 7 Months ago Karma: 0  
It's good, thank you.
 
Logged Logged  
  The administrator has disabled public write access.
Go to top