Jump to content
DevFuse Forums

Garage System v3.2.0


Michael

Recommended Posts

  • Management

The Garage System has been updated with a few new features and several more bug fixes.

 

Notable Changes:

  • Content spy integration for add and update vehicles.
  • Support added for view new content, including improvements to the search plugin.
  • My media plugin added for vehicles.
  • Redesign of featured vehicles template, when 1 vehicle has been featured.
  • Option in browse vehicles page to filter by make and/or model. (When using make/model database.)
  • Support for bbcode in vehicle description.
  • Overhaul of comment display and posting, layout now reflects other IPS apps. Support for quick add comment included as well.

Bug Fixes:

Link to comment
Share on other sites

Found a language error:

"Can view Garaage System while offline"

 

 

 

 

VNC (filtering in the last year, have 3 entries in last week) is still not working for me - it only generates one garage query, this one:

SELECT COUNT(*) as count
FROM ipb_garages_list v
LEFT JOIN ipb_profile_friends friend
  ON ( friend.friends_member_id=v.member_id AND friend.friends_friend_id=1 )
WHERE v.date_added > 1337467988

Edited by z1000forum
Link to comment
Share on other sites

  • 5 months later...

Michael,

Great mod, my members use it quite often.

 

Some items

  • When adding a Custom Field, I'd like to be able to leave Field Description blank - currently won't allow
    • it would also be valuable if I could move this Custom Field higher in the list amongst the standard fields

    [*]I'm unable to view the "Garage Stats" similiar to the photo you posted on http://www.devfuse.com/products/62-garage-system/ (3 photo from the left)

    [*]"my_vehicles" is showing up instead of "My Vehicles"

If you need to see my Garage for the stats and format, http://www.gmc4x4.com/garage/

Link to comment
Share on other sites

  • Management

Michael,

Great mod, my members use it quite often.

 

Some items

  • When adding a Custom Field, I'd like to be able to leave Field Description blank - currently won't allow
    • it would also be valuable if I could move this Custom Field higher in the list amongst the standard fields

    [*]I'm unable to view the "Garage Stats" similiar to the photo you posted on http://www.devfuse.c...-garage-system/ (3 photo from the left)

    [*]"my_vehicles" is showing up instead of "My Vehicles"

If you need to see my Garage for the stats and format, http://www.gmc4x4.com/garage/

  • Thanks noted for next version.
    • Should be possible already, you'll have a little drag icon next to each field. This works similar to the hooks drag and drop to re-order fields.

    [*]Sorry that is a legacy screenshot, I should update that because the "quick" stats have been moved to the bottom of the Garage to make more room for the random vehicle. But if you like that layout, I can put together a template edit for you to add it yourself.

    [*]Make sure you've uploaded the public/style_images/master/garage_system/ folder into your other skin images e.g. public/style_images/###/

Link to comment
Share on other sites

  • 2 weeks later...
  • Thanks noted for next version.
    • Should be possible already, you'll have a little drag icon next to each field. This works similar to the hooks drag and drop to re-order fields.

    [*]Sorry that is a legacy screenshot, I should update that because the "quick" stats have been moved to the bottom of the Garage to make more room for the random vehicle. But if you like that layout, I can put together a template edit for you to add it yourself.

    [*]Make sure you've uploaded the public/style_images/master/garage_system/ folder into your other skin images e.g. public/style_images/###/

  • I can drag within the custom fields, but I'd like to drag one of the custom fields into the area where the preset fields are. As an example, dragging a custom field right underneath "Vehicle Owner"
  • If you don't mind, a template edit would be great - i've never done one before, so if you dont mind putting together quick steps that would be helpful
  • You hit the nail on the head...I actually didn't know I had to do that...you just helped me across a few hooks I went back and updated into my custom skin - unbelievably helpful!!!

Thank you so much for your reply - again, sincerest apologies for the double post!

Edited by NewToAllThis
Link to comment
Share on other sites

  • Management
  • I can drag within the custom fields, but I'd like to drag one of the custom fields into the area where the preset fields are. As an example, dragging a custom field right underneath "Vehicle Owner"
  • If you don't mind, a template edit would be great - i've never done one before, so if you dont mind putting together quick steps that would be helpful
  • You hit the nail on the head...I actually didn't know I had to do that...you just helped me across a few hooks I went back and updated into my custom skin - unbelievably helpful!!!

  • Currently I don't have code that can drag the fields from tab to tab. You'll need to edit the field and change the "Field Tab" dropdown to "Main Tab". This tab displays all the fields on the main page below the default fields like vehicle owner.
  • Sure, if you open Admin CP > Look & Feel Tab > select skin > skin_garage > sidebar

Find:

<td class='row2'><img src='{$this->settings['img_url']}/garage_system/garage_stats.png' alt='{$this->lang->words['stats']}' />  <a href='{$this->settings['base_url']}app=garage&do=stats'><b>{$this->lang->words['garage_stats']}</b></a>

 

Add BELOW:

<br />
<ul class='garage_stats'>
<li><strong>{$this->lang->words['stats_owners']}:</strong> <span class='stat_count right'><if test="total_owners:|:$this->caches['garage']['stats']['total_owners']">{parse format_number="$this->caches['garage']['stats']['total_owners']"}<else />--</if></span></li>
<li><strong>{$this->lang->words['stats_vehicles']}:</strong> <span class='stat_count right'><if test="total_vehicles:|:$this->caches['garage']['stats']['total_vehicles']">{parse format_number="$this->caches['garage']['stats']['total_vehicles']"}<else />--</if></span></li>
<li><strong>{$this->lang->words['stats_mods']}:</strong> <span class='stat_count right'><if test="total_mods:|:$this->caches['garage']['stats']['total_mods']">{parse format_number="$this->caches['garage']['stats']['total_mods']"}<else />--</if></span></li>
<li><strong>{$this->lang->words['stats_images']}:</strong> <span class='stat_count right'><if test="total_images:|:$this->caches['garage']['stats']['total_images']">{parse format_number="$this->caches['garage']['stats']['total_images']"}<else />--</if></span></li>
<li><strong>{$this->lang->words['stats_views']}:</strong> <span class='stat_count right'><if test="total_views:|:$this->caches['garage']['stats']['total_views']">{parse format_number="$this->caches['garage']['stats']['total_views']"}<else />--</if></span></li>
<li><strong>{$this->lang->words['stats_comments']}:</strong> <span class='stat_count right'><if test="total_comments:|:$this->caches['garage']['stats']['total_comments']">{parse format_number="$this->caches['garage']['stats']['total_comments']"}<else />--</if></span></li>
</ul>

 

Then save the template.

 

Thank you so much for your reply - again, sincerest apologies for the double post!

 

No problem at all, I was about to answer again but thought the questions were familiar.

Link to comment
Share on other sites

  • 3 months later...
  • 6 months later...

Hello guys!

 

I have a small request... Is it any chance to do something with image resize action? now it works properly for horizontal image orientation, but when I upload vertical (for example 2:3 prop) the result is overstretched badly...

thanks in advance!..

 

Daniel

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...