vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   vBGarage v3.1.1 (now with GD-Lib support!) (https://vborg.vbsupport.ru/showthread.php?t=63681)

magnus 04-28-2004 09:51 PM

Quote:

Originally Posted by Da_GoTTi
from: https://vborg.vbsupport.ru/showpost....&postcount=147

the code you talk about here is not showing the image in a new thread. im using 3.1.1...any ideas?

This is going to be obsolete with v3.2.0. However, in the meantime if you wish, simply modify the code to reflect the v3.1.1 format. That was posted with v3.0.1 in mind, I believe.

GoTTi 04-28-2004 10:34 PM

ight magnus, sorry for buggin so much...i set my page load on here to show 100 posts per page, so i see it now....

ANOTHER quesiton of mine...

when a thumbnail is viewed in the popup, its showing the entire image...but if the image is bigger then the viewable screen, its not showing a scroll bar...that is a problem cuz on some high res images, im only getting 50% or w/e of the image...how can this be fixed?

GoTTi 04-28-2004 10:37 PM

oh, this is def a HOTM right here...i would consider this a great addon for vbulletin. if it was modified to be a actual photo gallery, its the first ever that is or the board by the board.

great job magnus.

GoTTi 04-28-2004 10:45 PM

another idea:

placing the images on the forumhome has worked, thanx for that....idea is now, the images load on forum home, but can it be made to show the user beneath the image who loaded it as well?

magnus 04-28-2004 11:06 PM

Quote:

Originally Posted by Da_GoTTi
another idea:

placing the images on the forumhome has worked, thanx for that....idea is now, the images load on forum home, but can it be made to show the user beneath the image who loaded it as well?

Yea, look through the posts here where someone asked how to do that with the Latest Uploads. Just apply that same process.

GoTTi 04-28-2004 11:36 PM

here is the information to put hte "Latest Uploads" on forumhome.

magnus if you can put this in your 1st post as modifications or something, make it easier for us to find these great modifications.

magnus 04-28-2004 11:39 PM

Quote:

Originally Posted by Da_GoTTi
here is the information to put hte "Latest Uploads" on forumhome.

magnus if you can put this in your 1st post as modifications or something, make it easier for us to find these great modifications.

No need for a .txt file, I'll just put a link like I did for all the other modifications.

GoTTi 04-28-2004 11:43 PM

heres the link chief.

https://vborg.vbsupport.ru/showpost....&postcount=542

GoTTi 04-29-2004 01:31 AM

when a picture is deleted through the garage area, does it remove the image from the DB as well?

SVTOA 04-29-2004 01:42 AM

I have written a little add-on for this awesome hack. What this does is create a custom block of info that displays 1/4 Mile info in the text area. You create 4 custom fields for the mod, then edit one template and you're done. If a member does not fill in the first custom field, an alternate message displays. If they leave any of the other custom fields blank, no info for that field displays (as opposed to 00.00)

Attached is a screenshot of how it looks and the instructions, which I will also post:

Code:

ADD A CUSTOM BLOCK TO YOUR VB GARAGE TO DISPLAY MEMBER 1/4 MILE TIMES.
MAY BE CUSTOMIZED ANY WAY YOU WISH TO USE IT.
This minor template modification to the VB GARAGE by MAGNUS will create a custom block in the text area of the member's
garage that displays 1/4 mile stats and RWHP if the member has filled in these custom fields.
If the member has not filled them in, rather than display empty data the box displays an alternate message that you
Can also customize.


###############################################################################################################
Installation is quite easy.

Step 1:

Create 4 custom user profile fields:
"1/4 Mile ET"
"BEST MPH"
"BEST 60 FOOT TIME"
"RWHP"

Step 2:
Note the field ID numbers of the fields you created in step one, and edit the code below with your field #'s in order for

this mod to work on your forum. The field ID #'s in the code below are examples from my forum. If you do not match the proper

field id's from your forum then the info dispayed in the user's VB Garage will not be correct!


Step three:  Open template "vbgarage_viewgarage" and find: 

#####################################################
<td class="alt2" width="60%">$data[text]
#####################################################


Add this after:

##################################################
<!-- performance stats block by SVTOA -->
<br>
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder"

width="100%">
<tr>
<td class="tcat"><span class="smallfont"><b>My $data[year] $data[model] Performance Stats</b></span></td>
</tr>
<tr>
<td class="$getbgrow"><span class="smallfont">

<if condition="!$user['userid']">
<else />
<!-- YOU MUST EDIT THE FIELDS BELOW TO MATCH THE NUMBERS OF YOUR FORUM CUSTOM FIELDS -->
<if condition="$user[field6] !=''">
<font color="black"><b>My Best ET: <font color="red">$user[field6]</font>
<else />

<!-- the next line may be changed to say whatever you want it to say -->
This member has not added ET data to their vB Garage.
</if>
</if>
</span>
</td>
</tr>
<!-- best mph field -->
<tr>
<td class="$getbgrow"><span class="smallfont">
<if condition="$user[field8] !=''">
<font color="black"><b>My Best MPH: <font color="red">$user[field8]</font>
</if>
</span>
</td>
</tr>
<!-- rwhp field -->
<tr>
<td class="$getbgrow"><span class="smallfont">
<if condition="$user[field11] !=''">
<font color="black"><b>My RWHP: <font color="red">$user[field11]</font>
</if>
</span>
</td>
</tr>
<!-- best 60 foot time -->
<tr>
<td class="$getbgrow"><span class="smallfont">
<if condition="$user[field9] !=''">
<font color="black"><b>My Best 60 foot time: <font color="red">$user[field9]</font>
</if>
</span>
</td>
</tr>
</td>
</tr>

</table>
<br/>

<!-- End PERFORMANCE STATS BLOCK -->
########################################################



All times are GMT. The time now is 11:33 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02587 seconds
  • Memory Usage 1,759KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete