vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Profile Enhancements - Additional Section within Profile and Dropdown within Posts (https://vborg.vbsupport.ru/showthread.php?t=123254)

Wired1 06-13-2007 05:52 AM

Hrm, looks like a whole hook is missing from the main hack. Odd thing is, while looking over the code this weekend, I downloaded everything from these threads and installed it fine per the uploaded instructions. Maybe I wasn't working off of the instructions I thought it was. I'll re-do it tomorrow.

As for what it does, it calls only the marked profile fields and displays them in that box. If you can't wait for the new code to be posted, check out the 3.0.x and 3.5.x threads, they have it in their code as well.

Wired1 06-17-2007 10:56 PM

Damned if I know why, but the plugin's back, all on its own...

Anyway, I've updated the instructions. vBulletin changed the memberinfo page a bit, and as such I've translated those changes over to this hack. Just some minor formatting.

RedGTiVR6 06-17-2007 11:31 PM

precisely what do we need to update to get the part of the memberinfo page to show up correctly?

Just re-upload the .xml?

The instructions are still for 3.6.0. Or at least that's what they say at the top of the .txt file when you open it.

Wired1 06-18-2007 10:40 PM

yep, re-upload the XML file. Fixed instruction file's title.

RedGTiVR6 06-19-2007 02:39 AM

when I upload the .xml as a plugin, it doesn't update the version in the plug-in list. Still lists it as 2.1.0 not 2.1.1.

Otherwise, it's fixed on our forum!

Thanks for the update!

dbirosel 06-21-2007 04:38 PM

Everything on MEMBERINFO is screwed up. What did I do wrong?

xt0m 06-26-2007 06:46 AM

Done everything by the book (twice) and the dropdown wont display - in usercp, the extra options is shown but when clicked all I get is "save changes" and "reset fields" - no fields to input stuff to :(

hobbystoresearc 08-08-2007 02:18 AM

Is there a way so in the admincp area a line can be added to seperate profile fields from the extra option profile fields? Right now they are bunched together but it would be great to see a category line that says 'Extra Options' then under that the Extra Option fields are shown.

nnjj.net 08-08-2007 07:32 AM

what if I need to use it for photography use instead of PC spesfications?

home9000 08-11-2007 10:16 AM

It it working in 3.6.5 ?

nnjj.net 08-11-2007 10:25 AM

any one plz? and does it work on 3.6.8?

home9000 08-11-2007 12:26 PM

I try it on 3.6.5
but without succeed
I think there is some thin missing in code or template
It's not appear in user profile or in postbite

Saviour 09-04-2007 01:13 AM

I've got the extar fields page working, but the dropdown doesn't appear...

Man, these mods are racking my brain...I could've made a mistake, but the only thing I think may be causing the issue is the edit to the member.php file...attached.

This is a great mod...I just wish there was someone around to help...

I'm using 3.6.8

UPDATE:

Got tired of waiting for help...

I just removed the if conditional from the postbit and..."voila"...done and done.

Thanks for the help...

The Realist 10-05-2007 01:06 PM

Ok,

Looked at the edit instructions and it says to find:
Code:

<if condition="$show['membergroups']">
                                <dl id="membergroups_list" class="smallfont">
                                $membergroupbits
                                </dl>
                        <else />
                                <div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></div>
                        </if>

And replace it with:
Code:

<if condition="$show['extrainfo']">
                                <dl id="additionalinfo_list">
                                $customfields2
                                </dl>
                        <else />
                                <div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[n_a]</phrase></strong></div>
                        </if>

But my MEMBERINFO template looks like this:
Code:

<if condition="$show['membergroups']">
                                                                <td></td>
                                                                <else />
                                                                <td><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></td>
                                                                </if>
                                                        </tr>
                                                        $membergroupbits
                                                        </table>
                                                </div>
                                       
                                        </div>
                                </div>
                        </td>
                </tr>
                </table>

So what edits do I need to make?

Regards.

Wired1 10-06-2007 09:13 PM

Replace:
Code:

<if condition="$show['membergroups']">
                                                              <td></td>
                                                              <else />
                                                              <td><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></td>
                                                              </if>
                                                      </tr>
                                                      $membergroupbits
                                                      </table>

With:

Code:

<if condition="$show['extrainfo']">
                                                              <td></td>
                                                              <else />
                                                              <td><strong><phrase 1="$userinfo[username]">$vbphrase[n_a]</phrase></strong></td>
                                                              </if>
                                                      </tr>
                                                      $customfields2
                                                      </table>


WtwSkippy 10-06-2007 10:56 PM

This hack is PERFECT for what I need for two sites (horse message board and car club).

BTW, woot for Orlando, FL. I'm over by Unviersal Studios

The Realist 10-07-2007 08:59 AM

Thanks, I'll give it a shot now and report back asap.

Regards.

The Realist 10-07-2007 09:19 AM

Thanks, the edits worked fine but my text is not aligned correctly, see attached pic and how can I change the section heading?

Regards.

The Realist 10-07-2007 10:20 AM

Sections heading has been changed but if I add to much text, its not all alighned.

Any ideas?

Wired1 10-08-2007 11:14 PM

Quote:

Originally Posted by WtwSkippy (Post 1354440)
This hack is PERFECT for what I need for two sites (horse message board and car club).

BTW, woot for Orlando, FL. I'm over by Unviersal Studios

wahoo :)

Quote:

Originally Posted by The Realist (Post 1354672)
Thanks, the edits worked fine but my text is not aligned correctly, see attached pic and how can I change the section heading?

Sections heading has been changed but if I add to much text, its not all alighned.

Any ideas?

Not a clue. All my hack does is replace the vBulletin variable with one of my own creation, and displays it.

l3it3r 10-13-2007 07:22 AM

Installed, working, thanks!

Arachnophiles 10-17-2007 09:06 PM

Hi Wired1, and thanks for an awesome hack :D

I'm using this for members to list their collection and I've added some code to one of the template modifications in order to prevent the dropdown from being rendered off the page. It works ok for IE, but not in FF....does anyone have any ideas??? :confused:

In postbit:

FIND:
Code:

<!-- / post $post[postid] popup menu -->
After it post: (added code marked in red)
Code:

<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
                <td class="thead">$post[username]'s PC Specs</td>
        </tr>

        <if condition="$post['field5']">
                <tr><td width="500px" class="vbmenu_option">Motherboard: $post[field5]</td></tr>
        </if>

        <if condition="$post['field6']">
                <tr><td width="500px" class="vbmenu_option">Processor: $post[field6]</td></tr>
        </if>

        <if condition="$post['field7']">
                <tr><td width="500px" class="vbmenu_option"> You get the idea. Fill in the blanks!!! </td></tr>
        </if>

        </table>
</div>
<!-- / post specs_menu -->

Appreciate any suggestions.

Many thanks,
Adam.


Edit:
Nevermind, managed to sort it by changing the td class and order to:
Code:

<if condition="$post['fieldX']">
                <tr><td class="alt2" width="670px"><b>X:</b> $post[fieldX]</td></tr>
        </if>

Cheers,
Adam.

Wired1 10-18-2007 06:41 PM

cool beans

Dave-M 10-24-2007 09:13 PM

Hi Wired1,
Thanks for this :)

I posted in the other thread last week, and managed to get that part working, but am still struggling with this part.


I have this custom skin, and I have followed the instructions to the letter, and here is what I have.

https://vborg.vbsupport.ru/external/2007/10/7.png

https://vborg.vbsupport.ru/external/2007/10/8.png

https://vborg.vbsupport.ru/external/2007/10/5.png

As you can see, I dont have any extra options showing, but I do have the extra options in the User CP menu on the left.

If someone could point me in the right direction, i would be eternally greatful :)

Thanks.

Dave.

Wired1 10-25-2007 12:24 AM

Quote:

Originally Posted by Dave-M (Post 1367810)
Hi Wired1,
Thanks for this :)

I posted in the other thread last week, and managed to get that part working, but am still struggling with this part.


I have this custom skin, and I have followed the instructions to the letter, and here is what I have.
As you can see, I dont have any extra options showing, but I do have the extra options in the User CP menu on the left.

When a new profile field is added, in the Display Page area, select Options: Extra Options (or whatever you placed in the extra_options vB Phrase)

Defkalion 10-25-2007 11:33 AM

Great mod, many thanks! :)

Works fine, except this little problem;

Let's say I have 5 extra fields. IF a user enters all 5, they all appear ok in the drop down.

But if he SKIPS let's say the 3d field, the last two are not displayed in the drop down, even if they are filled in by the user. I checked my <if> </if> parts in the code and there doesn't seem to be any inconsistency.

Can you please help me out on this?

Again thanks for a great hack. :)

Wired1 10-25-2007 04:47 PM

Yeah, it does scream as if there's an <if> somewhere. If you want to post or PM your dropdown code, I'll take a look at it.

Dave-M 10-25-2007 07:23 PM

Quote:

Originally Posted by Wired1 (Post 1367944)
When a new profile field is added, in the Display Page area, select Options: Extra Options (or whatever you placed in the extra_options vB Phrase)

Thanks :)

Yep, already got that bit sorted, its just that theres no dropdown menu in the avatar area (postbit?).

Like this.
https://vborg.vbsupport.ru/external/2007/10/5.png

And this is what i have in the admincp.

https://vborg.vbsupport.ru/external/2007/10/6.png

:)

Defkalion 10-25-2007 07:23 PM

Ok I found the problem, I had the same if condition="$post['field6'] twice. Sorry for the messup.

Thanks for offering to help :)

Wired1 10-28-2007 05:18 AM

Dave, for the dropdown to be there, you need to add the dropdown code to the sidebar postbit. Hack only has instructions for the one w/ the user info above the post.

Dave-M 10-29-2007 04:01 PM

Hi,

I put the code into the postbit_legacy template, but it still doesnt show the dropdown, so I set the forums to use the new postbit, and it still doesnt show.

Here's what I have for postbit templates in the admincp, and have tried it in both of the ones that are highlighted red.
https://vborg.vbsupport.ru/external/2007/10/3.png

Any ideas?

Thanks :)

Wired1 10-29-2007 10:05 PM

Check the dropdown code for <if>. Most likely you left it in, and that particular field has no data in it, so the dropdown doesn't show up.

Dave-M 10-29-2007 11:13 PM

Thanks :)

I've just searched in both the postbit templates for <if> and it comes up with "not found".

I'm cursed aren't I? :D

afmarko99 10-30-2007 05:47 AM

I had this hack installed prior to the 3.6.8 update and everything was fine. I performed the update and re-installed the hack. THe dropdown in the post work fine but I can't get the Computer Specs to show up in user profiles anymore.


In the instructions it says:

Code:


FIND:
<if condition="$show['membergroups']">
<dl id="membergroups_list" class="smallfont">
$membergroupbits
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></div>
</if>
 
REPLACE WITH:
<if condition="$show['extrainfo']">
<dl id="additionalinfo_list">
$customfields2
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[n_a]</phrase></strong></div>
</if>

I don't have either one of those phrases. Help please.

Wired1 10-30-2007 03:22 PM

Quote:

Originally Posted by Dave-M (Post 1371547)
Thanks :)

I've just searched in both the postbit templates for <if> and it comes up with "not found".

I'm cursed aren't I? :D

Code:

FIND:

<!-- / post $post[postid] popup menu -->

After it post:

<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
                <td class="thead">$post[username]'s PC Specs</td>
        </tr>
                <tr><td class="vbmenu_option">Motherboard: $post[field5]</td></tr>
                <tr><td class="vbmenu_option">Processor: $post[field6]</td></tr>

        </table>


Wired1 10-30-2007 03:36 PM

Quote:

Originally Posted by EaglezEye (Post 1371708)
I had this hack installed prior to the 3.6.8 update and everything was fine. I performed the update and re-installed the hack. THe dropdown in the post work fine but I can't get the Computer Specs to show up in user profiles anymore.


In the instructions it says:

I don't have either one of those phrases. Help please.

Revert it to default template, and re-do the instructions. Please either remove my code from your post, or surround it with [QUOTE ] [/QUOTE]

Dave-M 10-30-2007 06:46 PM

Quote:

Originally Posted by Wired1 (Post 1372038)
Code:

FIND:

<!-- / post $post[postid] popup menu -->

After it post:

<!-- post specs_menu -->
<div class="vbmenu_popup" id="specs_$post[postid]_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
                <td class="thead">$post[username]'s PC Specs</td>
        </tr>
                <tr><td class="vbmenu_option">Motherboard: $post[field5]</td></tr>
                <tr><td class="vbmenu_option">Processor: $post[field6]</td></tr>

        </table>


I'm completely lost now :)

I have replaced the old code from the instructions with that new code above, and still dont have the dropdown.

Wired1 10-30-2007 07:22 PM

Let's take a step back. In the User CP, in the Edit Extra Options page, are there any fields there?

Dave-M 10-30-2007 08:01 PM

I appreciate the help :)

Yep, I have those.

https://vborg.vbsupport.ru/external/2007/10/1.png

afmarko99 10-30-2007 09:12 PM

Quote:

Originally Posted by Wired1 (Post 1372052)
Revert it to default template, and re-do the instructions. Please either remove my code from your post, or surround it with [QUOTE ]

[/quote]


I looked at the version I had from 3.6.4. It doesn't have the coding I need either. Cant' you just point out where I need to put the code. Below is my Memberinfo template.

Thanks



Code:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]</title>
</head>
<body>
$header
$navbar
<!-- main info - avatar, profilepic etc. -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
 <td class="tcat">$vbphrase[view_profile]<span class="normal">: $userinfo[username]</span></td>
</tr>
<tr>
 <td class="alt2">
  <table cellpadding="0" cellspacing="0" border="0" width="100%">
  <tr>
  <td style="border-bottom:1px solid $stylevar[tborder_bgcolor]" width="100%" colspan="2"> 
    <if condition="$userinfo['rank'] OR $userinfo['reputationdisplay']">
    <div style="float:$stylevar[right]; padding:4px">
      <if condition="$userinfo['rank']"><div align="center">$userinfo[rank]</div></if>
      <if condition="$userinfo['reputationdisplay']"><div align="center">$userinfo[reputationdisplay]</div></if>
    </div>
    </if> 
    <div class="bigusername">$userinfo[musername] $userinfo[onlinestatus]</div>
    <if condition="$userinfo['usertitle']"><div class="smallfont">$userinfo[usertitle]</div></if>
  </td>
  <if condition="$show['profilepic']">
  <td valign="top" align="$stylevar[right]" rowspan="2">
    <img src="$userinfo[profilepicurl]" $userinfo[profilepicsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_picture]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" />
  </td>
  </if>
  </tr>
  <tr valign="top">
  <if condition="$show['avatar']">
    <td><img src="$userinfo[avatarurl]" $userinfo[avatarsize] alt="<phrase 1="$userinfo[username]">$vbphrase[xs_avatar]</phrase>" border="0" style="border:1px solid $stylevar[tborder_bgcolor]; border-top:none" /></td>
  <else />
    <td>&nbsp;</td>
  </if>
  <td class="smallfont" valign="bottom" align="$stylevar[right]">
    <if condition="$show['lastactivity']">
    <div>$vbphrase[last_activity]: $userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span>&nbsp;</div>
    </if>
    <if condition="$show['currentlocation']">
    <div>$userinfo[action] $userinfo[where]<if condition="$show['detailedtime']"> - <else /> @ </if> $userinfo[time]&nbsp;</div>
    </if>
  </td>
  </tr>
  </table>
 </td>
</tr>
</table>
<!-- / main info - avatar, profilepic etc. -->
<!-- button row -->
<if condition="$show['profilelinks']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
 <if condition="$userinfo['showvcard']">
  <td class="vbmenu_control"><a href="member.php?$session[sessionurl]do=vcard&amp;u=$userinfo[userid]" rel="nofollow">$vbphrase[download_vcard]</a></td>
 </if>
 <if condition="$show['member']">
 <td class="vbmenu_control">
  <if condition="$show['addbuddylist']">
  <a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_buddy_list]</phrase></a>
  <else />
  <a href="profile.php?$session[sessionurl]do=removelist&amp;userlist=buddy&amp;u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[remove_x_from_your_buddylist]</phrase></a>
  </if>
 </td>
 <td class="vbmenu_control">
  <if condition="$show['addignorelist']">
  <a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=ignore&amp;u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_ignore_list]</phrase></a>
  <else />
  <a href="profile.php?$session[sessionurl]do=removelist&amp;userlist=ignore&amp;u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[remove_x_from_your_ignorelist]</phrase></a>
  </if>
 </td>
 </if>
 <if condition="can_moderate()">
  <td class="vbmenu_control"><a href="moderator.php?$session[sessionurl]do=useroptions&amp;u=$userinfo[userid]">$vbphrase[user_options]</a></td>
 </if>
 <if condition="$show['giveinfraction']">
    <td class="vbmenu_control"><a href="infraction.php?$session[sessionurl]do=report&amp;u=$userinfo[userid]">$vbphrase[give_infraction]</a></td>
 </if>
</tr>
</table>
</if>
<!-- / button row -->
<br />
<if condition="$show['infractions']">
<!-- infractions row -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
 <td class="tcat" colspan="$colspan"><span style="float:$stylevar[right]" class="smallfont"><phrase 1="$userinfo[ipoints]">$vbphrase[x_points_total]</phrase>&nbsp; &nbsp;</span>$vbphrase[infractions]</td>
</tr>
<tr>
 <td class="thead" colspan="2">&nbsp; &nbsp;$vbphrase[post]</td>
 <td class="thead">$vbphrase[date]</td>
 <td class="thead">$vbphrase[expires]</td>
 <td class="thead">$vbphrase[points]</td>
 <td class="thead">$vbphrase[reason]</td>
 <td class="thead" nowrap="nowrap">$vbphrase[posted_by]</td>
 <if condition="$show['reverse']"><td class="thead">$vbphrase[details]</td></if>
</tr>
$infractionbits
</table>
<if condition="$pagenav">
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-top:3px">
<tr valign="bottom">
 <td align="$stylevar[right]">$pagenav</td>
</tr>
</table>
</if>
<!-- / infractions row -->
<br />
</if>
<if condition="$show['signature']">
<!-- signature row -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
 <td class="thead">$vbphrase[signature]</td>
</tr>
<tr>
 <td class="alt1" title="$vbphrase[signature]">$userinfo[signature]</td>
</tr>
</table>
<!-- / signature row -->
<br />
</if>

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
 <td class="tcat" width="50%">$vbphrase[forum_info]</td>
 <td class="tcat" width="50%">$vbphrase[contact_info]</td>
</tr>
<tr valign="top">
 <td class="panelsurround" align="center">
 <div class="panel">
  <div align="$stylevar[left]">
 
  <div class="fieldset">
    <div style="padding:$stylevar[formspacer]px">
    $vbphrase[join_date]: <strong>$userinfo[datejoined]</strong>
    </div>
  </div>
 
  <fieldset class="fieldset">
    <legend>$vbphrase[posts]</legend>
    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
    <tr>
    <td>
      $vbphrase[total_posts]: <strong>$userinfo[posts]</strong> (<phrase 1="$postsperday">$vbphrase[x_posts_per_day]</phrase>)
    </td>
    </tr>
    <if condition="$vboptions['profilelastpost']">
    <tr>
    <td>
      $vbphrase[last_post]:<br />
      <a href="$userinfo[lastposturl]">$userinfo[lastposttitle]</a><br />
      $userinfo[lastpostdate] <span class="time">$userinfo[lastposttime]</span>
    </td>
    </tr>
    </if>
    <tr>
    <td><a href="search.php?$session[sessionurl]do=finduser&amp;u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[find_all_posts_by_x]</phrase></a></td>
    </tr>
    <tr>
    <td><a href="search.php?$session[sessionurl]do=process&amp;showposts=0&amp;starteronly=1&amp;exactname=1&amp;searchuser=$userinfo[urlusername]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[find_all_threads_started_by_x]</phrase></a></td>
    </tr>
    </table>
  </fieldset>
 
  <if condition="$vboptions['usereferrer']">
  <div class="fieldset">
    <div style="padding:$stylevar[formspacer]px">
    $vbphrase[referrals]: <strong>$referrals</strong>
    </div>
  </div>
  </if>
 
  <if condition="$show['usernotes']">
  <div class="fieldset">
    <div style="padding:$stylevar[formspacer]px">
    $vbphrase[user_notes]:
    <if condition="$show['usernoteview']">
      <strong>$usernote[total]</strong> [<a href="usernote.php?$session[sessionurl]u=$userinfo[userid]">$vbphrase[view]</a>]
    </if>
    <if condition="$show['usernotepost']">
      [<a href="usernote.php?$session[sessionurl]do=newnote&amp;u=$userinfo[userid]">$vbphrase[post_user_note]</a>]
    </if>
    <if condition="$show['usernoteview']">
      <br />($vbphrase[last_note]: $usernote[lastpostdate] <span class="time">$usernote[lastposttime]</span>)
    </if>
    </div>
  </div>
  </if>
<!-- [START HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->
<if condition="$show['userawards']">
 <fieldset class="fieldset">
 <legend>$vbphrase[award_showcase]</legend>
 <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
  <tr>
  <td align="center">
    $userawards
  </td>
  </tr>
 </table>
 </fieldset>
</if>
<!-- [END HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->
  </div>
 </div>
 </td>
 
 <td class="panelsurround" align="center">
 <div class="panel">
  <div align="$stylevar[left]">
 
  <div class="fieldset">
    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
    <if condition="!$show['contactlinks']">
    <tr>
    <td><strong><phrase 1="$userinfo[username]">$vbphrase[x_has_no_contact_info]</phrase></strong></td>
    </tr>   
    </if>
    <if condition="$show['homepage']">
    <tr>
    <td>
      $vbphrase[home_page]:<br />
      <a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
    </td>
    </tr>
    </if>
    <if condition="$show['email']">
    <tr>
    <td>
      $vbphrase[email]:<br />
      <a href="sendmessage.php?$session[sessionurl]do=mailmember&amp;u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[send_message_via_email_to_x]</phrase></a>
    </td>
    </tr>
    </if>
    <if condition="$show['pm']">
    <tr>
    <td>
      $vbphrase[private_message]:<br />
      <a href="private.php?$session[sessionurl]do=newpm&amp;u=$userinfo[userid]" rel="nofollow"><phrase 1="$userinfo[username]">$vbphrase[send_private_message_to_x]</phrase></a>
    </td>
    </tr>
    </if>
    </table>
  </div>
 
  <if condition="$show['hasimicons']">
  <fieldset class="fieldset">
    <legend>$vbphrase[instant_messaging]</legend>
    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
    <if condition="$show['textimicons']">
    <if condition="$userinfo['showicq']">
    <tr>
      <td>$vbphrase[icq]</td>
      <td>$userinfo[icq]</td>
    </tr>
    </if>
    <if condition="$userinfo['showaim']">
    <tr>
      <td>$vbphrase[aim]</td>
      <td>$userinfo[aim]</td>
    </tr>
    </if>
    <if condition="$userinfo['showmsn']">
    <tr>
      <td>$vbphrase[msn]</td>
      <td>$userinfo[msn]</td>
    </tr>
    </if>
    <if condition="$userinfo['showyahoo']">
    <tr>
      <td>$vbphrase[yahoo]</td>
      <td>$userinfo[yahoo]</td>
    </tr>
    </if>
    <if condition="$userinfo['skype']">
    <tr>
      <td>$vbphrase[skype]</td>
      <td>$userinfo[skype]</td>
    </tr>
    </if>
    <else />
    <if condition="$userinfo['showicq']">
    <tr>
      <td>$userinfo[icqicon]</td>
      <td><a href="#" dir="ltr" onclick="imwindow('icq', '$userinfo[userid]', 500, 450); return false;">$userinfo[icq]</a></td>
    </tr>
    </if>
    <if condition="$userinfo['showaim']">
    <tr>
      <td>$userinfo[aimicon]</td>
      <td><a href="#" dir="ltr" onclick="imwindow('aim', '$userinfo[userid]', 400, 200); return false;">$userinfo[aim]</a></td>
    </tr>
    </if>
    <if condition="$userinfo['showmsn']">
    <tr>
      <td>$userinfo[msnicon]</td>
      <td><a href="#" dir="ltr" onclick="imwindow('msn', '$userinfo[userid]', 400, 200); return false;">$userinfo[msn]</a></td>
    </tr>
    </if>
    <if condition="$userinfo['showyahoo']">
    <tr>
      <td>$userinfo[yahooicon]</td>
      <td><a href="#" dir="ltr" onclick="imwindow('yahoo', '$userinfo[userid]', 400, 200); return false;">$userinfo[yahoo]</a></td>
    </tr>
    </if>
    <if condition="$userinfo['showskype']">
    <tr>
      <td>$userinfo[skypeicon]</td>
      <td><a href="#" dir="ltr" onclick="imwindow('skype', '$userinfo[userid]', 400, 285); return false;">$userinfo[skype]</a></td>
    </tr>
    </if>
    </if>
    </table>
  </fieldset>
  </if>
 
 
  </div>
 </div>
 </td>
 
</tr>
<tr>
 <td class="tcat" width="50%">$vbphrase[additional_information]</td>
 <td class="tcat" width="50%">$vbphrase[extra_options]</td>
</tr>
<tr valign="top">
 <td class="panelsurround" align="center">
 <div class="panel">
  <div align="$stylevar[left]">
 
  <div class="fieldset">
  <if condition="$show['extrainfo']">
    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
    <if condition="$show['birthday']">
    <tr>
    <td>
      <strong>$vbphrase[birth_date]</strong>:<br />
      $userinfo[birthday]
    </td>
    </tr>
    </if>
    <if condition="$show['age']">
    <tr>
    <td>
      <strong>$vbphrase[age]</strong>:<br />
      $userinfo[age]
    </td>
    </tr>
    </if>
    $customfields
<if condition="!empty($userinfo[mood])">
<strong>$vbphrase[my_mood]:</strong>
<br />
<img src="images/mood/$userinfo[mood].gif" border="0" />
</if>
    </table>
  <else />
    <em>$vbphrase[n_a]</em>
  </if>
  </div>
 
  </div>
 </div>
 </td>
 
 <td class="panelsurround" align="center">
 <div class="panel">
  <div align="$stylevar[left]">
 
      <div class="fieldset">
    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
    <tr>
    <if condition="$show['extrainfo']">
    <td></td>
    <else />
    <td><strong><em>$vbphrase[n_a]</em></td>
    </if>
    </tr>
    $customfields2
    </table>
  </div>
 
  </div>
 </div>
 </td>
</tr>
<!-- XFire Hack -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
   
    <td class="tcat" width="100%">xFire Profile Info</td>
</tr>
<tr valign="top">

<td class="panelsurround" align="center">
    <div class="panel">
        <div align="$stylevar[center]">
<div class="fieldset">
            <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
               
                   
            <td><strong>$vbphrase[x_xfire_info]</phrase></strong></td>
                   
               
<if condition="$post['field29']">

<a href="http://profile.xfire.com/$post[field29]" rel="nofollow"><img src=http://miniprofile.xfire.com/bg/$post[field30]/type/0/$post[field29].png width=440 height=111 border=0></a>
<br>
<p align="center"><a href="xfire:add_friend?user=$post[field29]" rel="nofollow"><b>Add to xFire Friends List</b></a></p>
</if>
</if>
</table>
</div>
</div>
    </td>
<!-- / End XFire Hack -->
</table>
<!-- [START HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->
$awards_showcase
<!-- [END HACK='Yet Another Awards System hack' AUTHOR='HacNho'] -->

$footer
</body>
</html>



All times are GMT. The time now is 05:50 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.01863 seconds
  • Memory Usage 1,965KB
  • 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
  • (12)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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