Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Myspace Profile Re-Write PRO! 1.0.0 Details »»
Myspace Profile Re-Write PRO! 1.0.0
Version: 1.0.0, by Stangsta Stangsta is offline
Developer Last Online: Feb 2017 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 02-27-2006 Last Update: 02-28-2006 Installs: 248
Uses Plugins Template Edits
Additional Files  
No support by the author.

Myspace Profile Re-Write PRO! 1.0.0


*** Screenshot removed, contains unwanted images ***

------------------------------------------------
Installation type: Template modification
Time to install using everything provided: 2 hours
Time to install minimally: 30 minutes
Level of difficulty: Hard (Tedious)
------------------------------------------------

What it does: This is a MEMBERINFO template re-write to put a little bling-bling in your profile! There is some work on your part to make this work correctly, and will be explained below. The goal of this template re-write is to make your user profiles look similar to "Myspace". You can customize this to look however you wish, and myself and MissKalunji have come together to bring this to you. There will be 2 examples, the first one will be mine, and the 2nd will be MissKalunji's.

Credits: This template would not be possile without HR3RDGEN and all those that posted and shared thier mods in his thread. It was a good resource, and was unfortunate it was taken down. Please do not bring ANY drama to this thread concerning what happened to the original template thread. Lets move forward. I would also like to thank MissKulanji for her infinate wisdom and talent. She has put alot of work into this as well and brings alot to the table.

What you will need: Below you will find the links to the hacks you will need to download and install. I STRONGLY RECCOMEND that you make ALL modifications to a "test style" first. If you do not have one, create one. This way, when you mess up, your users will not be affected. Please download and install the hacks listed below, and also...please remember to CLICK INSTALL on those threads! The below templates INCLUDE CSS modification ability!!!

------------------------------------------------

Installation: Please install the following hacks!

vBJournal
Who Viewed My Profile
Friends and/or Buddies in Profile
Zodiac Sign in the Postbit and Elsewhere
Last Seen Online in postbit
Hide User Contact Info From Guests
Default Avatar
Pig's Subscription Gift (only if you use paid subscriptions)
Auto PM after add Buddy! (Optional)
Number of VBA Gallery Images in Profile

------------------------------------------------

Download the .htaccess file I have attached and place it in your forum's root folder. This will give you those wonderful links for the usernames. ex. www.yourdomain.com/forums/stangsta

*NOTE: Please bear in mind, you may have to modify the above hacks after you install them. PLEASE refer to the hack specific thread for support, although we will still try to help you. ALSO, on any of those hacks, it may ask you to add or remove code from the MEMBERINFO template, SKIP THAT PART! It is already done for you in these templates.

To make this work for you, you have to create profile fields in the adminCP. Each profile field that you create will have its own unique number. ex. "feild24" Once created, each profile field will be editable by the user in thier userCP under edit profile. Start by creating all the fields to match the screenshots. Then, write down the name and field number on a piece of paper for quick reference (it will be much easier that way). Once you have done this, using the code below, change the profile fields to match YOURS.

Next, start by copying one of the template codes listed below in its entirety and paste it in your MEMBERINFO template OVERWRITING the existing contents (yes, erase the current contents). Please be sure to use a "test" style. Now save & reload. Remember that piece of paper you wrote everything down on? Change the profile fields in the template to match YOUR field numbers. When you are done, hit save.

Now, it can get annoying when someone types a couple paragraphs and it all ends up into one big paragraph. Thats because the BBCODE is not getting parsed! Well, go ahead and create a plugin. You should add the new plugin to the MEMBER_COMPLETE hook location. What you do is take the profile field number that you want people to be able to use BBCODE (the smileys, img tags, etc) in and replace the field number within the plugin. Heres an example:
Code:
{ 
if (!is_object($bbcode_parser)) 
{ 
    require_once(DIR . '/includes/class_bbcode.php'); 
    $bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); 
} 
$userinfo['field1'] = $bbcode_parser->parse($userinfo['field1'],0, true); 
}
Change ['field1'] to the field you wish to parse. Now, what if you want to parse multiple fields? Then just keep adding it like this:
Code:
{ 
if (!is_object($bbcode_parser)) 
{ 
    require_once(DIR . '/includes/class_bbcode.php'); 
    $bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); 
} 
$userinfo['field1'] = $bbcode_parser->parse($userinfo['field1'],0, true); 
}
{ 
if (!is_object($bbcode_parser)) 
{ 
require_once(DIR . '/includes/class_bbcode.php'); 
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); 
} 
$userinfo['field2'] = $bbcode_parser->parse($userinfo['field2'],0, true); 
}
{ 
if (!is_object($bbcode_parser)) 
{ 
require_once(DIR . '/includes/class_bbcode.php'); 
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list()); 
} 
$userinfo['field3'] = $bbcode_parser->parse($userinfo['field3'],0, true); 
}
This is an example of my MEMBERINFO (screenshots below), I consider it a 90% myspace clone. PLEASE NOTE: I use avatars in this example AS a profile picture. So if you use a profile picture, you need to change it to show a profile picture instead of an avatar. Or if you like it, disable profile pics on your board via vBulletin Options. I find users are more confused with having a profile pic AND an avatar, so I did this to simplify the process for them. I use a max avatar size of 170x170, I think it looks good and consistant throughout the forum.

Here is some quick reference on the profile fields I used.

About Me Multiple-Line Text Box field8
Location Single-Line Text Box field2
Music Multiple-Line Text Box field3
Movies Multiple-Line Text Box field4
Who I'd like to meet Multiple-Line Text Box field25
Books Multiple-Line Text Box field27
Heroes Multiple-Line Text Box field31
TV Multiple-Line Text Box field32
Sex Single-Selection Radio Buttons field5
Interests Multiple-Line Text Box field6
Myspace URL Single-Line Text Box field9
Video Multiple-Line Text Box field10
Orientation Single-Selection Menu field14
Ethnicity Single-Selection Menu field16
Smoker Single-Selection Radio Buttons field17
Marital Status Single-Selection Menu field15
Drinker Single-Selection Radio Buttons field18
Education Single-Selection Menu field23
I am here for: Multiple-Selection Checkbox field24
Children Single-Selection Menu field22
CSS Multiple-Line Text Box field35



Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<if condition="$userinfo[field35]">
<style type="text/css">$userinfo[field35]</style>
<else />
$headinclude
</if>
<title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]</title>
</head>
<body>
$header
$navbar
<if condition="$userinfo[userid] == $vbulletin->userinfo[userid]">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="panel" align="center">
<div class="smallfont"><font color="#0000000"><phrase 1="$userinfo[username]">$vbphrase[x_you_are_viewing_your_profile]</phrase></font> <a href="usercp.php$session[sessionurl]">$vbphrase[user_cp]</a></div>
</td>
</tr>
</table>
</if>
 
<table width="100%" border="0" align="center" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]"> 
 
<tr> 
    <td valign="top" width="0%"><table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
 
<tr class="tcat"> <td colspan="2"><div align="Left" class="bigusername"><strong>$userinfo[username]</div></font></strong>
<div class="smallfont"><a href="$vboptions[bburl]/$userinfo[username]">$vboptions[bburl]/$userinfo[username]</a></td></div></tr>
<if condition="$userinfo['usertitle']"> 
<tbody> 
         <tr class="tcat"> 
            <td class="text" colspan="2" style="" align="left" valign="bottom"></td> 
         </tr> 
 
                            </if> 
 
         <tr class="alt2"> 
             <td><div align="right"><center><if condition="$show['avatar']">
    <div class="smallfont">
     &nbsp;<a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" border="4" alt="" style="border-color:white;" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></center>
    </div>
<else /> <center><img src="http://www.sevencityforums.com/forum...e/nopropic.jpg">
                 </if></div><br /></center>
<strong><div align="center"><a href="/gallery/browseimages.php?do=member&amp;imageuser=$userinfo[userid]" title="View More Pics">View More Pics ($userimages[count])</td> </div></strong>
            <td align="left" valign="top" class="text"> 
<div class="smallfont" align="left">$userinfo[usertitle]</div> <br />
 
<strong>Sex:</strong> $userinfo[field5] <br /> <if condition="$show['age']"><strong>$vbphrase[age]:</strong> 
             $userinfo[age]</if> <br /> <strong>Location:</strong> $userinfo[field2]<br /> 
             <div>$userinfo[onlinestatus]</div> 
             <br /> 
<div><strong>Last Online:</strong> $userinfo[lastactivitydate] at $userinfo[lastactivitytime]</div> </td> 
         </tr> 
        </tbody> 
     </table> 
     <p> 
     <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
        <tr class="tcat"> 
         <td colspan="2"><strong>Contacting $userinfo[username]</td></font></strong>
        </tr> 
        <tr class="alt2"> 
         <td height="5" nowrap="nowrap" width="50%"> <div align="left"> 
             <a href="private.php?$session[sessionurl]do=newpm&amp;u=$userinfo[userid]&quot;&gt;&lt;">
<img border="0" src="http://www.sevencityforums.com/forum...mns/sendpm.gif" align="left" width="79" height="22"></a>
</td> 
         <td height="5" nowrap="nowrap" valign="top" width="50%"> 
            <div align="left"><if condition="$userinfo['showicq']"> $userinfo[icqicon] 
             <a href="#" dir="ltr" onclick="imwindow('icq', '$userinfo[userid]', 500, 450); return false;">$userinfo[icq]</a> 
             </if> </div></td> 
        </tr> 
        <tr class="alt2"> 
         <td height="5" nowrap="nowrap" valign="top" width="50%"> 
            <div align="left"><div class="smallfont">
     <a href="sendmessage.php?$session[sessionurl]do=mailmember&amp;u=$userinfo[userid]&quot; rel=&quot;nofollow">
<img border="0" src="http://www.sevencityforums.com/forum...dmailicon2.gif" align="left" width="79" height="22"></a></p> 
            </div></td> 
         <td height="2" nowrap="nowrap" valign="middle" width="50%"> 
            <div align="left"><if condition="$userinfo['showaim']"> $userinfo[aimicon] 
             <a href="#" dir="ltr" onclick="imwindow('aim', '$userinfo[userid]', 400, 200); return false;">$userinfo[aim]</a> 
             </if></div></td> 
        </tr> 
        <tr class="alt2"> 
         <td height="5" nowrap="nowrap" valign="top" width="50%"> 
         <div align="left"><div class="smallfont"><if condition="$show['addbuddylist']"> <a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forum...s/addbuddy.gif" width="79" height="22"></a> 
             <else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&amp;userlist=buddy&amp;u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forum...mns/remove.jpg" align="left" width="79" height="22"></a>
             </if> </div></td> 
         <td height="5" nowrap="nowrap" valign="top" width="50%"> 
            <div align="left"><if condition="$userinfo['showmsn']"> $userinfo[msnicon] 
             <a href="#" dir="ltr" onclick="imwindow('msn', '$userinfo[userid]', 400, 200); return false;">$userinfo[msn]</a> 
             </if></div></td> 
        </tr> 
        <tr class="alt2"> 
         <td height="5" nowrap="nowrap" valign="top" width="50%"> 
            <div align="left"><div class="smallfont"><if condition="$show['addignorelist']"><a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=ignore&amp;u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forum..._mns/block.jpg" width="79" height="22" align="left"></a></p> 
             <else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&amp;userlist=ignore&amp;u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forum...ns/addbudy.jpg" width="79" align="left" height="22"></a></p>
             </if> </div></td> 
         <td height="2" nowrap="nowrap" valign="middle" width="50%"> 
            <div align="left"><if condition="$userinfo['showyahoo']"> $userinfo[yahooicon] 
             <a href="#" dir="ltr" onclick="imwindow('yahoo', '$userinfo[userid]', 400, 200); return false;">$userinfo[yahoo]</a> 
             </if></div></td> 
        </tr> 
     </table> 
 
 
 
 
 
 
 
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
        <tr class="tcat"> 
         <td><strong>User Information</td> </font></strong>
        </tr> 
        <tr class="alt2"> 
         <td valign="top"></td> 
        </tr> 
 
<tr> 
         <td class="alt2"><div class="smallfont"><a href="$userinfo[homepage]" target="_blank" 
dir="ltr">My Home Page</a></div></td>
        </tr> 
<tr> 
         <td class="alt2"><div class="smallfont"><strong>MySpace URL:</strong><br /><a href="$userinfo[field9]">$userinfo[field9]</a></div></td>
        </tr> 
<tr> 
         <if condition="$show['profileviews']">
<td class="alt2">
<div class="smallfont">
    <if condition="$show['profileviewsother']"><a href="#" onClick="openWindow('misc.php?$session[sessionurl]do=profileviews&u=$userinfo[userid]', 300, 400); return false;">$vbphrase[profile_views]</a><else />$vbphrase[profile_views]</if>: $userinfo[profileviews]
    </div>
</div>
</if>
        </tr> 
<tr> 
         <td class="alt2"><div class="smallfont"><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 class="alt2"><div class="smallfont"><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> 
<tr> 
         <td class="alt2"><div class="smallfont">$vbphrase[total_posts]: <strong>$userinfo[posts]</strong> (<phrase 1="$postsperday">$vbphrase[x_posts_per_day]</phrase>)
     </td></div>
        </tr> 
<tr> 
         <td class="alt2">
<if condition="$vboptions['usereferrer']">
<div class="smallfont">
<strong>$vbphrase[referrals]:</strong> $referrals
    </div>
</div>
</if> 
        </tr> 
<tr> 
         <td class="alt2"><div class="smallfont"><a href="payments.php?$session[sessionurl]gift=true&userid=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[buy_x_a_sub]</phrase></a>
        </td>
     </td></div>
        </tr> 
     </table> 
<br />
 
 
 
 
 
 
 
 
 
 
 
 
 
<if condition="$userinfo[field10]"> 
     <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
        <tr class="tcat"> 
         <td class="text" wrap="" style="" align="left" height="10" valign="center" colspan="2"> 
            <span class=""><strong>$userinfo[username]'s Media </span> </td> </font></strong>
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="center"><EMBED SRC="$userinfo[field10]"></div></td> 
        </tr> 
     </table> 
</if> 
     <p> 
     <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
        <tr class="tcat"> 
         <td colspan="3" valign="middle"><strong>$userinfo[username]'s Interests</td></font></strong>
        </tr> 
        <tr valign="top" class="alt2"> 
         <td align="left" valign="top"><span class=""><strong>General:</strong></span></td> 
         <td align="left" valign="top">$userinfo[field6]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"><span class=""><strong>Music:</strong></span></td> 
         <td align="left" valign="top">$userinfo[field3]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"><span class=""><strong>Movies:</strong></span></td> 
         <td align="left" valign="top">$userinfo[field4]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"><span class=""><strong>Television:</strong></span></td> 
         <td align="left" valign="top">$userinfo[field32]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"><span class=""><strong>Heroes:</strong></span></td> 
         <td align="left" valign="top">$userinfo[field31]</td> 
        </tr> 
<tr class="alt2"> 
         <td align="left" valign="top"><span class=""><strong>Books:</strong></span></td> 
         <td align="left" valign="top">$userinfo[field27]</td> 
        </tr>
        <tr class="alt2"> 
         <td align="left" valign="top"><span class=""><strong>Groups:</strong></span></td> 
         <if condition="$show['membergroups']"> 
         <td>$membergroupbits</td>
         <else /> 
         <td><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></td> 
         </if> 
     </table> 
     <p> 
     <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
        <tr class="tcat"> 
         <td class="text" wrap="" style="" align="left" height="10" valign="center" colspan="2"> 
            <span class=""><strong>$userinfo[username]'s Details </span> </td> </font></strong>
        </tr> 
        <tr valign="top" class="alt2"> 
         <td align="left" valign="top" width="33%"> <div align="left"><span class=""><strong>Status:</strong></span></div></td> 
         <td style="">$userinfo[field15]</td> 
        </tr> 
<tr valign="top" class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Here For:</strong></span></div></td> 
<td style=""><if condition="$comma =''"></if>
<if condition="$post['field24']&1">
$comma Dating
<if condition="$comma =','"></if>
</if> 
<if condition="$post['field24']&2">
$comma Serious Relationships
<if condition="$comma =','"></if>
</if>
<if condition="$post['field24']&4">
$comma Friends
<if condition="$comma =','"></if>
</if>
<if condition="$post['field24']&8">
$comma Networking
<if condition="$comma =','"></if>
</if>
 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Orientation:</strong></span></div></td> 
         <td style="">$userinfo[field14]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Hometown:</strong></span></div></td> 
         <td style="">$userinfo[field2]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Ethnicity:</strong></span></div></td> 
         <td id="ProfileReligion:" style="">$userinfo[field16]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Zodiac 
             Sign:</strong></span></div></td> 
         <td style=""><if condition="$show['zodiacsign']"> 
            <div>$zodiacsign</div> 
            </if></td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Smoke 
             / Drink:</strong></span></div></td> 
         <td style="">$userinfo[field17] / $userinfo[field18]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Children:</strong></span></div></td> 
         <td style="">$userinfo[field22]</td> 
        </tr> 
        <tr class="alt2"> 
         <td align="left" valign="top"> <div align="left"><span class=""><strong>Education</strong></span></div></td> 
         <td style="">$userinfo[field23]</td> 
        </tr> 
     </table></td> 
    <td valign="top" width="60%"> <if condition="$show[journalinfo]"><table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
        <tr class="tcat"> 
         <td><strong>$userinfo[username]'s Latest Blog Entry</td></font></strong> 
        </tr> 
        <tr class="alt2"> 
         <td><if condition="$show[journalinfo]"> <if condition="$show[journal_lastentry]"><a href="journal.php?$session[sessionurl]do=showentry&e=$journal[lastentry_id]">$journal[lastentry]</a> 
            ($journal[lastentry_date])<br /> 
            <else />$vbphrase[private]</if> </if></td> 
        </tr> 
        <tr class="alt2"> 
         <td><if condition="$show[journalinfo]"> [<a href="journal.php?$session[sessionurl]do=showjournal&j=$journal[journal_id]"><phrase 1="$userinfo[username]">$vbphrase[visit_xs_journal]</phrase></a>] 
            </if></td> 
        </tr> 
     </table> 
     <p></if> 
     <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> 
        <tr class="tcat"> 
         <td><strong>$userinfo[username]'s Blurbs</td></font></strong> 
        </tr> 
        <tr class="alt2"> 
         <td valign="top"><strong>About Me:</strong><br />$userinfo[field8]</td> 
        </tr> 
        <tr> 
         <td class="alt2"><strong>Who I'd Like to Meet:</strong><br /> 
            $userinfo[field25]</td> 
        </tr> 
     </table> 
<br />$FNB_HTML<br />
     <p>$comment_panel</p></td> 
</tr></table></td> 
</table> 
<br />
<center>
<if condition="can_moderate()">Moderator Tools<br />
<td class="vbmenu_control"><a href="moderator.php?$session[sessionurl]do=useroptions&amp;u=$userinfo[userid]">$vbphrase[user_options]</a></td><br />
</if>
<!-- Hack: Username Management (MarcoH64) -->
<if condition="$mh_unm_can_change_other_name">
<td class="vbmenu_control"><a href="$mh_unm_modcp_link">$vbphrase[mh_unm_change_username]</a></td>
</if>
<!-- / Hack: Username Management (MarcoH64) -->
<if condition="$mh_upcd_last_changed">
     <div style="padding:$stylevar[formspacer]px">
     <strong>Profile last updated: $mh_upcd_last_changed</strong>
     </div>
    </if>
</center>
$footer 
<br />
</body>
</html>
CSS: CSS usage is optional. Its what gives the ability for users to customize the look of thier profiles. Since I have already added the code, all you have to do is create a profile field where the user can enter lots of text. once you do that change the CSS profile field number at the top of the template to match YOURS. Then when they enter the CSS in the profile field, it will change the profile.

Here is an example of how it would look like:

Code:
body {background: #FFF000}
page {background: #FFF000}
a:link {background: #FFF000}
a:hover, a:active {background: #FFF000}
a:visited {background: #FFF000}
.tcat {background: #FFF000}
.theader {background: #FFF000}
.tborder {background: #FFF000}
*NOTE: You dont have to modify all the sections, you can change as much or as little as you wish. Its up to you! You can change the HEX color codes to suit your needs. I will get more into additional codes to make it really fun after I finish the rest of the documentation.

If you want to use an image for the background instead of a color code then use this code instead:
Code:
Body{background-image:url(type the image url here)}
BE SURE TO CLICK INSTALL!!!!

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 02-28-2006, 03:06 AM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Demo Site


http://profile.dancehallareaz.com/MissKalunji
http://profile.dancehallareaz.com/member.php?u=3024
http://www.sevencityforums.com/forums/member.php?u=18
http://redlinemotorsports.org/forum/member.php?u=1








Here is a Css Generator posted by quanvo81 pretty basic but will help your members to create fabulous profile!

and also the vbgallery showing the latest uploaded image in profile
Reply With Quote
  #3  
Old 02-28-2006, 03:07 AM
Brandon Sheley's Avatar
Brandon Sheley Brandon Sheley is offline
 
Join Date: Mar 2005
Location: Google Kansas
Posts: 4,678
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice.. looking forward to the screenshots
I'm going to have one question..

I have a journal that is with my portal.. phpportal, vbportal..
will I be able to his that journal with this ? I understand I'll have to edit something,, just what ?
Reply With Quote
  #4  
Old 02-28-2006, 03:11 AM
HMBeaty's Avatar
HMBeaty HMBeaty is offline
 
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You can see the demo of mine here http://redlinemotorsports.org/forum/member.php?u=1

My template code.....

Code:
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$userinfo[username]'s Profile: "$userinfo[usertitle]" </title>
<style type="text/css"></style>
</head>
<body>
$stylevar[htmldoctype]
<p>
$headinclude
<p>
$header
$navbar
<TABLE align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> 
<TR> 
<TD class="tcat" COLSPAN=2>$userinfo[username]'s Profile</TD> 
</TR> 
<TR>
  <TD width="50%" valign="top" class="alt1" align="center"><if condition="$show['avatar']"><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" /></if><br />&quot;$userinfo[usertitle]&quot;</TD>
  <TD width="50%" valign="top" class="alt1" align="center"><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" align="center">$vbphrase[signature]</td>
</tr>
<tr>
	<td class="alt1" title="$vbphrase[signature]" align="center">$userinfo[signature]</td>
</tr>
</table>
<!-- / signature row -->
</if></TD>
</TR>
<TABLE align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> 
<TR> 
<TD class="thead" COLSPAN=2>$userinfo[username]'s Current Activities Statistics</TD> 
</TR> 
<TR>
  <TD width="50%" valign="top" class="alt1" align="center"><strong>Online Status:</strong></TD>
  <TD width="50%" valign="top" class="alt1" align="center">$userinfo[onlinestatus]</TD>
</TR>
<if condition="can_moderate()">
<TR>
  <TD width="50%" valign="top" class="alt1" align="center"><strong>User Option:</strong></TD>
  <TD width="50%" valign="top" class="alt1" align="center"><a href="moderator.php?$session[sessionurl]do=useroptions&amp;u=$userinfo[userid]">Click Here To Moderate This User</a></TD>
</TR>
</if>
<if condition="$show['lastactivity']">
<TR>
<TD width="50%" valign="top" class="alt1" align="center"><strong>Last Activities:</strong></TD>
  <TD width="50%" valign="top" class="alt1" align="center">$userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span>&nbsp;</TD>
</TR>
</if>
<if condition="$show['currentlocation']">
<TR>
  <TD width="50%" valign="top" class="alt1" align="center"><strong>This User Is Currently In:</strong></TD>
  <TD width="50%" valign="top" class="alt1" align="center">$userinfo[action] $userinfo[where]<if condition="$show['detailedtime']"> - <else /> @ </if> $userinfo[time]&nbsp;</TD>
</TR>
</if>
</table>								
<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="thead"><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="thead">
		<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="thead">
		<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 condition="$vboptions['favusers_enabled']">
	<td class="thead">
		<a href="vbfavorites.php?$session[sessionurl]do=addentry&amp;type=user&amp;id=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_user_to_favorites]</phrase></a>
	</td>
	</if>
	</if>
<if condition="($userinfo['arcadeoptions'] & 1) AND $userinfo['userid']!=$bbuserinfo['userid']"><td class="thead"> 
<a href="arcade.php?do=newchallenge&userid=$userinfo[userid]">Challenge  <b>$userinfo[username]</b> in the arcade</a></td></if>
	<if condition="can_moderate()">
		<td class="thead"><a href="moderator.php?$session[sessionurl]do=useroptions&amp;u=$userinfo[userid]">$vbphrase[user_options]</a></td>
	</if>
</tr>
</table>
</if>
<br>
<table width="100%" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]">
<tr>
<td width="25%" align="center" valign="top">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
	<td height="37" align="center" valign="top">
<table width="100%" cellpadding="1" cellspacing="3" class="tborder">
  <tr>
	<td class="alt1" width="10%" align="center" valign="top">
	   
		<if condition="$show['profilepic']"><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" />
			<else />
 			   			 <img src="$stylevar[imgdir_misc]/no_pic.jpg"  alt="$userinfo[username]" border="0" style="border:1px solid $stylevar[tborder_bgcolor];" />
			 			</if><br>
<a href="/gallery/browseimages.php?do=member&imageuser=$post[userid]">Click Here To See My Gallery</a>			
</td>
  </tr>
</table>
	<br />
</td>
  </tr>
</table>
<TABLE align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> 
<TR> 
<TD class="thead" COLSPAN=2>My Video</TD> 
</TR> 
<TR>
<if condition="$userinfo[field17]"> 
<TD width="100%" valign="top" class="alt1"><EMBED SRC="$userinfo[field17]" autostart="true" ShowControls="true" loop="true" height="240" width="320" align="center" height="128"></TD></if>
</TR>
</table>
<br />
<TABLE align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> 
<TR> 
<TD class="thead" COLSPAN=2>$userinfo[username]'s Interests</TD> 
</TR> 
<TR>
<if condition="$userinfo[field3]"> 
<TD width="10%" valign="top" class="alt1"><strong>Hobbies:</strong></TD> 
<TD width="90%" valign="top" class="alt1">$post[field3]</if></TD> 
</TR>
<TR>
<if condition="$userinfo[field5]"> 
  <TD width="10%"  valign="top" class="alt1"><strong>Vehicle Year:</strong></TD>
  <TD width="90%" valign="top" class="alt1">$post[field5]</if></TD>
</TR> 
<TR>
<if condition="$userinfo[field6]"> 
  <TD width="10%" valign="top" class="alt1"><strong>Vehicle Make:</strong></TD>
  <TD width="90%" valign="top" class="alt1">$post[field6]</if></TD>
</TR> 
<TR>
<if condition="$userinfo[field7]">   
<TD width="10%" valign="top" class="alt1"><strong>Vehicle Model:</strong></TD>
  <TD width="90%" valign="top" class="alt1">$post[field7]</if></TD>
</TR>
<TR>
<if condition="$userinfo[field8]">   
<TD width="10%" valign="top" class="alt1"><strong>Vehicle Mods:</strong></TD>
  <TD width="90%" valign="top" class="alt1">$post[field8]</if></TD>
</TR>
</TABLE> 
<br>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
	<td class="thead" width="100%">$vbphrase[forum_info]</td>
	</tr>
<tr valign="top">
	<td class="panelsurround" align="center">
				<div>
									$vbphrase[join_date]: <strong>$userinfo[datejoined]</strong>
				</div>
<if condition="$mh_upcd_last_changed">
					<div>						$vbphrase[mh_upcd_last_change_date]: <strong>$mh_upcd_last_changed</strong>
					</div>
				</if>
			<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="$show['ucash_memberinfo'] == true">
			<fieldset class="fieldset">
			<legend>$vbphrase[ucs_points]</legend>
				<div class="fieldset">
					<div style="padding:$stylevar[formspacer]px">
						<if condition="$vbulletin->userinfo['usergroupid'] == 6"><a href="ushop.php?do=a&shortname=admindonate&userid=$userinfo[userid]" target="_blank">$vbphrase[ucs_points] on hand</a><else />$vbphrase[ucs_points] on hand</if>: <strong>$userinfo[points]</strong><br />
						$vbphrase[ucs_points] in the bank: <strong>$userinfo[bankamount_display]</strong><br />
						<a href="ushop.php?do=a&shortname=donate&userid=$userinfo[userid]" target="_blank">Donate</a><br />
						<a href="ushop.php?do=userhistory&u=$userinfo[userid]">User's Purchase History</a>
					</div>
				</div>
			</fieldset>
			<if condition="$userinfo['ushop_profilemidi']">
			<fieldset class="fieldset">
				<legend>Midi</legend>
					<div class="fieldset">
						<div style="padding:$stylevar[formspacer]px">
						<a href="$userinfo[ushop_profilemidi]">$userinfo[username]'s Midi</a>
						</div>
					</div>
				</fieldset>
			</if>
			</if>
			<if condition="$vboptions['usereferrer']">
			<div class="fieldset">
				<div style="padding:$stylevar[formspacer]px">
					$vbphrase[referrals]: <strong>$referrals</strong>
				</div>
			</div>
			</if>
			<if condition="$show['profileviews']">
   <div class="fieldset">
   	<div style="padding:$stylevar[formspacer]px">
  		<if condition="$show['profileviewsother']"><a href="#" onClick="openWindow('misc.php?$session[sessionurl]do=profileviews&u=$userinfo[userid]', 300, 400); return false;">$vbphrase[profile_views]</a><else />$vbphrase[profile_views]</if>: $userinfo[profileviews]
   	</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>
	</td>
</tr>
</table>
<br>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
	<td class="thead" width="50%">$vbphrase[contact_info]</td>
</tr>
	<td class="panelsurround" align="center">
	<div>
		<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>
								<tr>
					<td>
						Group Memberships:<br />

					<if condition="$show['membergroups']"><else />
						<phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase>					</td>
				</tr>
$membergroupbits
				</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>
<!-- [START HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 1 ] -->
				<if condition="$vboptions['vbpager_active'] AND $bbuserinfo['userid']">
				<tr>
					<td>
						$vbphrase[pager_vbpager]:<br />
						<a href="#" onclick="window.open('pager.php?do=buddylist&amp;puserid=$userinfo[userid]','pagerbuddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=  yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;"><phrase 1="$userinfo[username]">$vbphrase[pager_send_pager_message_to_x]</phrase></a>
					</td>
				</tr>
				</if>
<!-- [END HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 1 ] -->
				</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, 220); return false;">$userinfo[skype]</a></td>
					</tr>
					</if>
				</if>
				</table>
			</fieldset>
			</if>
			
		
		</div>
	</div>
	</td>
	
</table><br />
<td valign="top">	  
<TABLE align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> 
<TR> 
<TD class="thead" COLSPAN=2>$userinfo[username]'s Information</TD> 
</TR> 
<if condition="$userinfo[field7]">
<TR>
  <TD width="40%"  valign="top" class="alt1"><strong>Gender:</strong></TD>
  <TD width="60%" valign="top" class="alt1">$post[field14]</TD>
</TR>
</if>
<if condition="$userinfo[field2]"> 
<TR>
  <TD width="40%" valign="top" class="alt1"><strong>Location:</strong></TD>
  <TD width="60%" valign="top" class="alt1">$post[field2]<else />N/A</TD>
</TR>
</if>
<if condition="$show['birthday']">
<TR>
  <TD width="40%" valign="top" class="alt1"><strong>Birthday:</strong></TD>
  <TD width="60%" valign="top" class="alt1">$userinfo[birthday]</TD>
</TR>
</if>
<if condition="$show['age']">
<TR>
  <TD width="40%" valign="top" class="alt1"><strong>Age:</strong></TD>
  <TD width="60%" valign="top" class="alt1">$userinfo[age]</TD>
</TR>
</if>
<if condition="$show['homepage']">
<TR>
  <TD width="40%" valign="top" class="alt1"><strong>HomePage:</strong></TD>
  <TD width="60%" valign="top" class="alt1"><a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
 </TD>
</TR>
</if>
<if condition="$userinfo[field13]">
<TR>
  <TD width="40%" valign="top" class="alt1"><strong>Cardomain URL:</strong></TD>
  <TD width="60%" valign="top" class="alt1"><a href="$userinfo[field13]" target="_blank" dir="ltr">$userinfo[field13]</a>
 </TD>
</TR>
</if>
<if condition="$userinfo[field16]">
<TR>
  <TD width="40%" valign="top" class="alt1"><strong>Myspace URL:</strong></TD>
  <TD width="60%" valign="top" class="alt1"><a href="$userinfo[field16]" target="_blank" dir="ltr">$userinfo[field16]</a>
 </TD>
</TR>
</if>
<if condition="$userinfo[field4]">
<TR>
  <TD width="40%" valign="top" class="alt1"><strong>Occupation:</strong></TD>
  <TD width="60%" valign="top" class="alt1">$post[field4]</TD>
</TR>
</if>     
</TABLE>
<br />
<if condition="$userinfo[field1]">	  
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%">
<tr>
<td class="thead">About Me</td>
</tr>
<tr class="alt1">
<td >$post[field1]</td>
</tr>
</table> 
</if>
<if condition="$numthread">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr class="tcat">
	<td colspan="6" align="center">
		$userinfo[username]'s Last $maxthread Threads
	</td>
</tr>
<tr class="thead" align="center">
	<td>Thread Title</td>
	<td>Forum</td>
	<td>Last Poster</td>
	<td>Last Post</td>
	<td width="30" align="center">Views</td>
	<td width="30" align="center">Replies</td>
</tr>
$threadlist
</table>
<br />
</if>
<p>$FNB_HTML <br />
<TABLE align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> 
<TR> 
<TD class="thead" COLSPAN=2><phrase 1="$limit" 2="$userinfo[username]" 3="$num">{$vbphrase['vbspace_commentamount_text']}</phrase>
( <a href="$vboptions[bburl]/member.php?u=$userinfo[userid]&do=getall"><phrase 1="$userinfo[username]" 2="$userinfo[userid]" >{$vbphrase['vbspace_commentviewall_text']}</phrase></a> )</TD> 
</TR> 
<tr>
$comment_bits</tr>
</table> 
<br />
$add_comment</td>
</tr>
</table>
<br>
<if condition="$profileimagebits">
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%">
<tr>
    <td class="tcat" colspan="$vba_options[gallery_columns]"><a href=" $vba_options[galleryurl]/index.php?$session[sessionurl]">$userinfo[username]'s Latest Gallery Submissions</a>
    </td>
</tr>
<tr>$profileimagebits</tr>
</table>
<br />
</if>
$footer
</body>
Reply With Quote
  #5  
Old 02-28-2006, 03:13 AM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Loco.M
nice.. looking forward to the screenshots
I'm going to have one question..

I have a journal that is with my portal.. phpportal, vbportal..
will I be able to his that journal with this ? I understand I'll have to edit something,, just what ?
you're trying to show the latest in the profile?

wich one is it?
Reply With Quote
  #6  
Old 02-28-2006, 03:15 AM
Brandon Sheley's Avatar
Brandon Sheley Brandon Sheley is offline
 
Join Date: Mar 2005
Location: Google Kansas
Posts: 4,678
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the journal I have is part of the portal.. and on the list of hacks that are needed, it says the vbJournal.. I'm just wanting to use the one I have already..

this is what it looks like..
http://locoforum.com/sitemodules-Journal.html

I'm sure it can be integrated..

btw i haven't downloaded this hack yet, but I will, and more likely will install it....just waiting to see some screenshots
Reply With Quote
  #7  
Old 02-28-2006, 03:15 AM
VBUsers's Avatar
VBUsers VBUsers is offline
 
Join Date: Aug 2004
Posts: 830
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

good stuff i will try this asap.
Reply With Quote
  #8  
Old 02-28-2006, 03:16 AM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

here's mine like i posted before

Code:
$stylevar[htmldoctype] 
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> 
<head> 
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]'s Space</title> 
<style type="text/css">
$post[field32]
</style>
</head> 
<body>  
$header
$navbar 


<!-- USER TITLE --> 

<!-- USER TITLE --> 
<center>
<br />
<A href="http://www.dancehallareaz.com/forum/$userinfo[username]">http://www.dancehallareaz.com/forum/$userinfo[username]</a>
</center><br /> 
<table width="100%" class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]"> 
  <tr> 
      <td class="thead" colspan="2"> 
         <div align="center" class="smallfont" style="font-size:18pt">&quot;$userinfo[usertitle]&quot;</div> 
    <div align="center" class="smallfont" style="font-size:10pt"><!-- DONATIONS -->
			<if condition="$userinfo['donor'] == '1'"><if condition="$userinfo['showdonor'] == '1'"><a href="$vboptions[bburl]/donate.php">$userinfo[musername] has donated to keep the site alive, have you?</a></if></if></div>
<!-- END DONATIONS -->
</td> 
  </tr> 
  <tr> 
    <td class="alt1" valign="top"> 
            <!-- START USER AVATAR --> 
                  <if condition="$show['avatar']"> 
                    <div style="float:left;"> 
                    <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" /></div></if> 
                    <!-- END USER AVATAR --> 
                    <!-- USER INFORMATION --> 
<if condition="$post['rank']"><div style="float:right;">$post[rank]</div></if> 
          <div style="font-size:18pt">$userinfo[musername] $userinfo[onlinestatus]</div><if condition="$userinfo['usertitle']"> 
 <div class="smallfont"> 
                  <strong>$vbphrase[join_date]:</strong> $userinfo[datejoined]
<br /> 
                    <strong>Hometown:</strong> $userinfo[field2]<br />                    
<if condition="$show['birthday']">
				<strong>$vbphrase[birth_date]</strong>: $userinfo[birthday] <br />
				</if>
 <if condition="$show['age']"><strong>$vbphrase[age]:</strong> $userinfo[age]</if>               
</div> 
             </if> 
<if condition="$show['warning']">
					<div>$userinfo[warning]</div>
				</if>
<!-- DONATIONS -->
			<if condition="$userinfo['donor'] == '1'"><if condition="$userinfo['showdonor'] == '1'"><a href="$vboptions[bburl]/donate.php"><img src="$stylevar[imgdir_button]/donate_donor.gif" border="0"></a></if></if>
<!-- END DONATIONS -->

<!-- USER EXTRA PROFILE FIELD INFORMATION MODIFY THIS CODE --> 
        </td> 
        <td align="center" valign="top" class="alt1"> 
            <if condition="$show['profilepic']"> 
                <img src="$userinfo[profilepicurl]" $userinfo[profilepicsize] alt="$userinfo[username]" border="0" style="border:1px solid $stylevar[tborder_bgcolor]" /> 
            <else /> 
                <img src="$stylevar[imgdir_misc]/NoPic.jpg"  alt="$userinfo[username]" border="0" style="border:1px solid $stylevar[tborder_bgcolor];" /> 
            </if> 
        </td> 
     </tr> 
     <tr> 
         <td class="alt1" valign="top"> 
            <table width="100%" class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]">  
                 <tr> 
                    <td class="thead"><strong>Interesting stuff</strong> 
                    </td> 
                 </tr> 
                    <td class="alt2"><div class="smallfont"> 
                            <if condition="$userinfo['isstaffrank']">
                                        <div class="smallfont">
                                        <if condition="$userinfo['staffrank_opentag']">$userinfo[staffrank_opentag]</if>
                                                <if condition="$userinfo['staffrank']">$userinfo[staffrank]</if>
                                        <if condition="$userinfo['staffrank_closetag']">$userinfo[staffrank_closetag]</if>
                                        </div>
                                </if>
<if condition="$userinfo[field17]"><strong>Real name:</strong> $userinfo[field17]<br /></if> 
                            <if condition="$userinfo[field16]"><strong>Sex :</strong> $userinfo[field16]<br /></if> 
			    <if condition="$userinfo[field21]"><strong>Status :</strong>$userinfo[field21]<br /></if>
			    <if condition="$userinfo[field4]"><strong>Occupation:</strong> $userinfo[field4]<br /></if> 
                            <if condition="$userinfo[field5]"><strong>RPG Name :</strong> $userinfo[field5]<br /></if> 
                            <if condition="$userinfo[field9]"><strong>Font In Posts :</strong>$userinfo[field9]<br /></if>
			    <if condition="$userinfo[field8]"><strong>Font Color In Posts  :</strong>$userinfo[field8]<br /></if>	  
			</div> 
                    </td> 
                </tr>  
                <tr> 
                    <td class="thead">Mood</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont">
	 <!-- mood hack display start -->
				<br /><if condition="$post[field27] != ''"><div class="smallfont">
				Current Mood: <img src="images/mood/$post[field27].gif" title="$post[field27]" align="center">
				</div></if>
                                <!-- mood hack display end -->
	 </div>
	</td> 
                </tr> 
                
                <if condition="$userinfo[field35]"> 
                <tr> 
                    <td class="thead">Im in love with</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont"> $post[field35] 
                    </div></td> 
                </tr> 
                </if> 
                <if condition="$userinfo[field14]"> 
                <tr> 
                    <td class="thead">Favorite music</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont"> $post[field14] 
                    </div></td> 
                </tr> 
                </if> 
                <if condition="$userinfo[field24]"> 
                <tr> 
                    <td class="thead">Favorite Consoles (xbox,ps2 etc)</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont"> $post[field24] 
                    </div></td> 
                </tr> 
                </if> 
		<if condition="$userinfo[field25]"> 
                <tr> 
                    <td class="thead">Favorite Games </td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont"> $post[field25] 
                    </div></td> 
                </tr> 
                </if> 

		<if condition="$userinfo[field22]"> 
                <tr> 
                    <td class="thead">Favorite TV Shows</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont"> $post[field22] 
                    </div></td> 
                </tr> 
                </if> 
		 <if condition="$userinfo[field23]"> 
                <tr> 
                    <td class="thead">Favorite Quote</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont"> $post[field23] 
                    </div></td> 
                </tr> 
                </if> 
		<if condition="$userinfo[field15]"> 
                <tr> 
                    <td class="thead">Favorite films</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont"> $post[field15] 
                    </div></td> 
                </tr> 
                </if> 
                <if condition="$userinfo[field26]"> 
                <tr> 
                    <td class="thead">What you hate and  love the most</td> 
                </tr> 
                    <td class="alt2" valign="middle"><div class="smallfont">$post[field26] 
                    </div></td> 
                </tr> 
                </if> 
		<if condition="$userinfo[field1]"> 
                <tr> 
                    <td class="thead"><strong>About Me:</strong> 
                    </td> 
                </tr> 
                <tr> 
                    <td class="alt2"> 
                          <div class="smallfont">$userinfo[field1]</div> 
                    </td> 
                </tr> 
                </if> 
                <if condition="$userinfo[field3]"> 
                <tr> 
                    <td class="thead"><strong>Interests</strong> 
                    </td> 
                </tr> 
		<tr> 
                    <td class="alt2"> 
                          <div class="smallfont">$userinfo[field3]</div> 
                    </td> 
                </tr> 
                </if> 
                <if condition="$show[journalinfo]"> 
                <tr> 
                    <td class="thead"><strong>Blogs</strong> 
                    </td> 
                </tr> 
                <tr> 
                    <td class="alt2"><div class="smallfont"> 
                       <a href="journal.php?$session[sessionurl]do=showjournal&j=$journal[journal_id]"><strong>Visit $userinfo[username]'s Blog</strong></a><br /> 
                       <strong>Blog Entries:</strong> $journal[entrycount]<br /> 
                       <strong>Blog Comments:</strong> $journal[commentcount]<br /> 
                       <strong>Blog Views:</strong> $journal[journalviews]<br /> 
                       <strong>Lastest Blog:</strong> <if condition="$show[journal_lastentry]"><a href="journal.php?$session[sessionurl]do=showentry&e=$journal[lastentry_id]">$journal[lastentry]</a> ($journal[lastentry_date])<br /><else />$vbphrase[private]</if> 
                          </div> 
                    </td> 
                </tr> 
                </if> 
                <tr> 
                    <td class="thead"><strong>Gallery</strong></td> 
                </tr> 
                <tr> 
                    <td class="alt2" align="center" valign="middle"> 
                        <a href="/gallery/browseimages.php?do=member&amp;imageuser=$userinfo[userid]" title="View My Gallery">View My Photo Gallery</a> 
                    </td> 
                </tr>
 <!-- Start Buddies Hack -->
<if condition="$vboptions['buddieslist_active'] AND $userinfo['buddiesliststatus']">			
			
<tr> 
                    <td class="thead"><strong>$vbphrase[buddies]</strong></td> 
                </tr> 
                <tr> 
                    <td class="alt2" align="center" valign="middle"> 
                       $vbphrase[totalbuddies]: <strong>$buddyinoutcounter</strong>
	<br>
	<a href="buddies.php?u=$userinfo[userid]">$vbphrase[viewmemberbuddies]</a> </td> 
                </tr>
	</if>
			
<!-- End Buddies Hack --> 
            </table> 
        </td> 
       
	<td class="alt1" valign="top"> 
            <table width="100%" class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]"> 
               <if condition="$userinfo[field18]">
		<tr> 
                    <td class="thead"><strong>Video / Song </strong></td> 
                </tr> 
                <tr> 
                    <td class="alt2" align="center" valign="middle"> 
                        <fieldset class="fieldset"><EMBED SRC="$userinfo[field18]"></fieldset> </td> 
                </tr>
			</if>

		<tr> 
                    <td class="thead">$vbphrase[timezone_image]</td> 
                </tr> 
                <tr> 
                    <td class="alt2" align="center" valign="middle"> 
                        <img src="gmtimage.php?gmt=$userinfo[timezoneoffset]&localtime=$userinfo[localtime]&localdate=$userinfo[localdate]#gif.gif" alt="$vbphrase[timezone_image]"/>
		 </td> 
                </tr>
 
	<tr> 
                  <td class="thead">Tools</td> 
              </tr> 
              <tr> 
                <td class="alt2"> <div class="smallfont" align="left"><if condition="$show['addbuddylist']"><img src="$stylevar[imgdir_button]/collapse_tcat_collapsed.gif" class="inlineimg" /> 
                    <a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$userinfo[userid]">Add 
                    to Buddies</a> <else /> <a href="profile.php?$session[sessionurl]do=removelist&amp;userlist=buddy&amp;u=$userinfo[userid]">Remove 
                    from Buddies</a> </if></div></td> 
              </tr> 
              <tr> 
                <td class="alt2"> <div class="smallfont" align="left"><if condition="$show['addignorelist']"> <img src="$stylevar[imgdir_button]/collapse_tcat.gif" class="inlineimg" /> 
                    <a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=ignore&amp;u=$userinfo[userid]">Add 
                    to Ignore</a> <else /> <a href="profile.php?$session[sessionurl]do=removelist&amp;userlist=ignore&amp;u=$userinfo[userid]">Remove from Ignore</a> </if></div></td> 
              </tr> 
              <tr> 
                <td class="alt2"><div class="smallfont" align="left"><img src="$stylevar[imgdir_button]/sendtofriend.gif" class="inlineimg" /><a href="private.php?$session[sessionurl]do=newpm&amp;u=$userinfo[userid]">Send Private Message</a></div></td> 
              </tr> 
              <tr> 
                <td class="alt2"><div class="smallfont" align="left"><img src="$stylevar[imgdir_button]/sendtofriend.gif" class="inlineimg" /><a href="sendmessage.php?$session[sessionurl]do=mailmember&amp;u=$userinfo[userid]" rel="nofollow">E-mail User</a> 
                </div></td> 
              <!-- [START HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 1 ] -->
				<if condition="$vboptions['vbpager_active'] AND $bbuserinfo['userid']">
				<tr>
					<td class="alt2">
						<a href="#" onclick="window.open('pager.php?do=buddylist&amp;puserid=$userinfo[userid]','pagerbuddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;"><phrase 1="$userinfo[username]">$vbphrase[pager_send_pager_message_to_x] </phrase></a>
					</td>
				</tr>
				</if>
<!-- [END HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 1 ] -->
</tr> 
                <if condition="$show['homepage']"> 
                <tr> 
                    <td class="alt2"><div class="smallfont" align="left"><img src="$stylevar[imgdir_misc]/home.gif" class="inlineimg" /> <a href="$userinfo[homepage]" target="_blank" dir="ltr">$vbphrase[home_page]</a></div></td> 
                </tr> 
                </if> 
            <tr> 
                <td class="alt2"> <div class="smallfont" align="left"><if condition="$show['addignorelist']"> 
                    <a href="$userinfo[field20]">Check My Personal page</a></if></div></td> 
              </tr>
	</td> 
              </tr>
<tr> 
                <td class="alt2"> <div class="smallfont" align="left">
                   <a href="profile.php?$session[sessionurl]do=admire&amp;userid=$userinfo[userid]">Register your admiration for $userinfo[username]</a></div></td> 
              </tr>
	</td> 
              </tr>



		</table> 
            <br /> 
            <if condition="$show['hasimicons']"> 
            <table width="100%" class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]"> 
                <tr> 
                    <td class="thead">$vbphrase[instant_messaging]</td> 
                </tr> 
                  <tr> 
                    <td class="alt2" valign="middle" align="center"> 
                          <if condition="$userinfo['showicq']">$userinfo[icqicon] </if><if condition="$userinfo['showaim']">$userinfo[aimicon] </if> 
                        <if condition="$userinfo['showmsn']">$userinfo[msnicon] </if><if condition="$userinfo['showyahoo']">$userinfo[yahooicon]</if>
<if condition="$userinfo['skype']">
$vbphrase[skype] $userinfo[skype]</if>
                    </td> 
                  </tr> 
<!-- [START HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 1 ] -->
				<if condition="$vboptions['vbpager_active'] AND $bbuserinfo['userid']">
				<tr>
					<td>
						$vbphrase[pager_vbpager]:<br />
						<a href="#" onclick="window.open('pager.php?do=buddylist&amp;puserid=$userinfo[userid]','pagerbuddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=$vboptions[vbpager_width],height=$vboptions[vbpager_height]'); return false;"><phrase 1="$userinfo[username]">$vbphrase[pager_send_pager_message_to_x]</phrase></a>
					</td>
				</tr>
				</if>
<!-- [END HACK='vB Pager' AUTHOR='UAEWEB.COM' VERSION='3.0.0' CHANGEID= 1 ] -->
            </table> 
            <br /> 
            </if> 

            <table width="100%" class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]"> 
                <tr> 
                    <td class="thead">Posting Information</td> 
                </tr> 
                  <tr> 
                    <td class="alt2"> 
                        <div class="smallfont"><strong>$vbphrase[total_posts]: </strong>$userinfo[posts] (<phrase 1="$postsperday">$vbphrase[x_posts_per_day]</phrase>)</div> 
                    </td> 
                </tr> 
                <if condition="$show['lastactivity']"> 
                <tr> 
                    <td class="alt2"><div class="smallfont"> 
                        <strong>Last Online At:</strong> $userinfo[lastactivitydate] 
                        <span class="time">$userinfo[lastactivitytime]</span></div> 
                    </td> 
                </tr> 
                </if> 

                <if condition="$show['currentlocation']">
                <tr> 
                    <td class="alt2"><div class="smallfont"> 
                        <strong>Where:</strong> $userinfo[lastactivitydate] 
                        <span class="time">$userinfo[action] $userinfo[where]<if condition="$show['detailedtime']"> - <else /> @ </if> $userinfo[time]&nbsp;</span></div> 
                    </td> 
                </tr> 
                </if> 
		<if condition="$vboptions['profilelastpost']"> 
                  <tr> 
                    <td class="alt2"><div class="smallfont"><strong>Most Recent Post:</strong> <a href="$userinfo[lastposturl]">$userinfo[lastposttitle]</a> $userinfo[lastpostdate] <span class="time">$userinfo[lastposttime]</span></div> 
                    </td> 
                  </tr> 
                  </if> 
                  <tr> 
                    <td class="alt2"><div class="smallfont"><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></div></td> 
                  </tr> 
                  <tr> 
                    <td class="alt2"><div class="smallfont"><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></div></td> 
                  </tr> 
                <if condition="$vboptions['usereferrer']"> 
                <tr> 
                    <td class="alt2"><div class="smallfont"><strong>Popularity : </strong>$referrals (<A href="http://www.dancehallareaz.com/forum/faq.php?faq=vb_board_usage#faq_vb_referrals_explain" TARGET="_BLANK">Whats This?</a>)</div></td> 
                </tr> 
                </if> 

                <if condition="$show['usernotes']"> 
                <tr> 
                    <td class="alt2"><div class="smallfont"><strong>$vbphrase[user_notes]:</strong> <if condition="$show['usernoteview']">$usernote[total] [<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></td> 
                </tr> 
                </if>
		<if condition="$userinfo['timeonboard']">
                <tr> 
                    <td class="alt2"><div class="smallfont"><strong>Total Time Spent On Board:</strong> $timeonboard </div></td> 
                </tr> 
                </if>  
		
	

 <tr> 
                <td class="alt2"> <div class="smallfont" align="left">
                    <if condition="$show['profileviews']">
   <div class="fieldset">
   	<div style="padding:$stylevar[formspacer]px">
  		<if condition="$show['profileviewsother']"><a href="#" onClick="openWindow('misc.php?$session[sessionurl]do=profileviews&u=$userinfo[userid]', 300, 400); return false;">$vbphrase[profile_views]</a><else />$vbphrase[profile_views]</if>: $userinfo[profileviews]
   	</div>
   </div>
   </if>

<if condition="$show['userawards']">
                <tr> 
                    <td class="alt2"><div class="smallfont"><strong>$vbphrase[award_showcase]:</strong> 
                    $userawards</div></td> 
                </tr> </if></td></table>
                <br /> 
  <if condition="$profileimagebits"> 
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"> 
<tr> 
    <td class="tcat" colspan="$vba_options[gallery_columns]"><a href="http://www.dancehallareaz.com/gallery/index.php?$session[sessionurl]">$userinfo[username]'s Latest Gallery Submissions</a> 
    </td> 
</tr> 
<tr>$profileimagebits</tr> 
</table> 
<br /> 
</if>   

            </table> 
        <br /> 
            <table width="100%" class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]"> 
                
                </table>        
$buddies

    <if condition="can_moderate()"> 
<div align="center" class="smallfont"><strong>Moderation Control:</strong> <a href="moderator.php?$session[sessionurl]do=useroptions&amp;u=$userinfo[userid]">$vbphrase[user_options]</a></div> 
    </if> 
$comment_panel
$footer
</body> 
</html>
Reply With Quote
  #9  
Old 02-28-2006, 03:19 AM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Loco.M
the journal I have is part of the portal.. and on the list of hacks that are needed, it says the vbJournal.. I'm just wanting to use the one I have already..

this is what it looks like..
http://locoforum.com/sitemodules-Journal.html

I'm sure it can be integrated..

btw i haven't downloaded this hack yet, but I will, and more likely will install it....just waiting to see some screenshots

look at the demo site

where can i get the code?
Reply With Quote
  #10  
Old 02-28-2006, 03:27 AM
Stangsta's Avatar
Stangsta Stangsta is offline
 
Join Date: Aug 2004
Location: Virginia
Posts: 440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Some screenshots up to give some idea, ill post more (better ones) later tonight when I finish the 1st post.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05292 seconds
  • Memory Usage 2,489KB
  • Queries Executed 24 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (7)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete