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)

joeychgo 04-29-2004 04:00 PM

absolutely -- but im walking out the door til now and will be gone about dinnertime

GoTTi 04-29-2004 04:34 PM

ive searched the thread and cant find anything...

how can i make the gallery load random images on load?

dcevoclub 04-29-2004 05:11 PM

SVTOA, i did your hack for the Timeslip database.

however if you go here http://forums.dcevoclub.com/vbgarage.php?do=view&id=169

i have that black where is should be white... what am i missing?

SVTBlackLight01 04-29-2004 05:38 PM

dcevoclub,

Check this part the timeslip add-on in your template.

Code:

<!-- 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 -->

It looks your missing the part in bold itallics.

dcevoclub 04-29-2004 06:01 PM

Quote:

Originally Posted by SVTBlackLight01
dcevoclub,

Check this part the timeslip add-on in your template.

Code:

<!-- 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 -->

It looks your missing the part in itallics.


no that is there..

SVTBlackLight01 04-29-2004 06:35 PM

I only say that because, looking at your page source this is what is on the page.

Code:

<td class="tcat"><span class="smallfont"><b>My 2003 Evolution Performance Stats</b></span></td>
</tr>
<tr>
<td class=""><span class="smallfont">



This member has not added ET data to their vB Garage.


</span>
</td>
</tr>
<!-- best mph field -->

The cell class is not defined (it wasn't showing up at all before).

SVTOA 04-29-2004 07:26 PM

Joeychgo- I filled in all the fields in my profile on your website, and created a garage and everything displays just fine. Did you change something since this morning?

http://www.lincolnvscadillac.com/vbg...do=view&id=314

SVTOA 04-29-2004 07:29 PM

Quote:

Originally Posted by dcevoclub
SVTOA, i did your hack for the Timeslip database.

however if you go here http://forums.dcevoclub.com/vbgarage.php?do=view&id=169

i have that black where is should be white... what am i missing?

You may have to edit the table and text colors to match the style on your website, but this should adapt to the style it is used with. On my baord we have several styles and the colors change according to the style.

I just visited your page you linked to, and while you do see only a black rectangle, if you right-click and swipe the mouse over that box the text that is supposed to be there shows up as selected. This should be easy to fix.

SVTOA 04-29-2004 07:36 PM

Here's what I see when I look at the two sites where you guys report trouble...

magnus 04-29-2004 08:10 PM

SVTOA, good job! :) I hope you don't mind, but I went ahead and formatted/tinkered with your HTML a bit. I made it XHTML 1.0 Compliant, as well as cleaned it up a bit. I think I may have fixed the issue with joey's table, too. Not sure, so he'll have to test it and let me know:

HTML Code:

<!-- 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 smallfont">
                <b>My $data[year] $data[model] Performance Stats</b>
        </td>
</tr>

<!-- best et field -->
<tr>
        <td class="$getbgrow smallfont">
                <if condition="$user[field55] != '00.00'">
                        <b>My Best ET: <font color="red">$user[field55]</font>
                <else />
                        This member has not added ET data to their vB Garage.
                </if>
        </td>
</tr>

<!-- best mph field -->
<tr>
        <td class="$getbgrow smallfont">
                <if condition="$user[field56] != '00.00'">
                        <b>My Best MPH: <font color="red">$user[field56]</font>
                </if>
        </td>
</tr>

<!-- rwhp field -->
<tr>
        <td class="$getbgrow smallfont">
                <if condition="$user[field51] != '0.0'">
                        <b>My RWHP: <font color="red">$user[field51]</font>
                </if>
        </td>
</tr>

<!-- best 60 foot time -->
<tr>
        <td class="$getbgrow smallfont">
                <if condition="$user[field52] !='0.000'">
                        <b>My Best 60 foot time: <font color="red">$user[field52]</font>
                </if>
        </td>
</tr>

</table>

<br />
<!-- End PERFORMANCE STATS BLOCK -->

I'll be sure to put a link to this in the first post. ;)


All times are GMT. The time now is 02:35 AM.

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.02339 seconds
  • Memory Usage 1,767KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_html_printable
  • (2)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