PDA

View Full Version : User Stats in table, aligned left


downsouthern
01-18-2003, 10:47 PM
I'm looking for this mod, basically something similar to what you have here. I've searched and searched, but cant seem to find it or anything like it. Any help?

Tony G
01-18-2003, 10:50 PM
Search, this has been answered many times with sample code. No mod has been released, though.

downsouthern
01-18-2003, 10:56 PM
thanks Tony. I had it before on my old VB, but the server crashed and I lost everything, cant seem to find it now.

downsouthern
01-20-2003, 06:11 PM
I found the mod that I want to use here: http://www.vbulletintemplates.com/mods/showthread.php?s=&threadid=1203&perpage=14&pagenumber=1 The only problem is I have a skin installed and if I use this code with its entirety, it messes my board up.

Here's a screen shot of my user stats:

downsouthern
01-20-2003, 06:12 PM
And here is my postbit code? Any help is greatly appreciated!!

Tony G
01-20-2003, 10:02 PM
Can you screenshot what happens when you add the code?

downsouthern
01-20-2003, 10:15 PM
Here's a before & after screenshot.

Tony G
01-20-2003, 10:27 PM
No wonder, don't use that postbit's code. You need to add it in seperately into the postbit you have now.

downsouthern
01-20-2003, 10:30 PM
The problem is that I dont really know how.

Disturbed
01-20-2003, 11:09 PM
hey downsouth, i made something like that on my test board, would you like the code?

Tony G
01-20-2003, 11:21 PM
That looks good, but not the whole postbit or he'll end up with the stuffed up postbit again. :)

downsouthern
01-20-2003, 11:50 PM
Here's basically what I would like to have displayed, I just dont know how to implement it with the rest of my already modified postbit.

How can I set up a test board?

Disturbed
01-20-2003, 11:53 PM
well i dunno how to do it on your modified postbit, i can tell you how to do it on the default one

post your postbit code here and imma try editing it :)

Tony G
01-20-2003, 11:59 PM
Just add his author column code and edit to your liking. Simple. :)

downsouthern
01-21-2003, 12:28 AM
I almost got it, I just cant get the username linked, any help?

Tony G
01-21-2003, 02:51 AM
I haven't even see a mod for this simple task so I'll release in a minute.

downsouthern
01-21-2003, 03:13 AM
I pretty much got it the way I want it, this was my first time modifying a template. Yea! Linking the user name just takes the person to their profile, they can just click on the profile link, so its not really something I HAVE to have, but it'd be nice. Just like how you can click on a users name here.

Below is a screen shot on how it turned out, thanks for your help.

Tony G
01-21-2003, 03:15 AM
http://www.vbulletintemplates.com/mods/showthread.php?s=&threadid=2768

Released. let me know how it went. :)

Sanctum
01-21-2003, 09:28 AM
Originally posted by downsouth
I almost got it, I just cant get the username linked, any help?


anything inside a postbit you can put from "userinfo" variables
like the following:




$userinfo[userid] = this will return the order number of them
registering on your board.

Using $userinfo you can change the stuff on the end.

examples:

$userinfo[yahoo]
$userinfo[username]
$userinfo[icq]

You can also add the "additional fields" you add on for
other members when they sign up. When you looko at a user
profile it say additional information.
The first field YOU add to that will be "Field 1"
on your postbit info if you add it like:


$userinfo[field1]



Hope that helps :)