View Full Version : Myspace Profile Re-Write PRO! 1.0.0
Stangsta
02-27-2006, 10:00 PM
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 (https://vborg.vbsupport.ru/showthread.php?t=96462)
Who Viewed My Profile (https://vborg.vbsupport.ru/showthread.php?t=91772)
Friends and/or Buddies in Profile (https://vborg.vbsupport.ru/showthread.php?p=873179)
Zodiac Sign in the Postbit and Elsewhere (https://vborg.vbsupport.ru/showthread.php?t=102269)
Last Seen Online in postbit (https://vborg.vbsupport.ru/showthread.php?t=82623)
Hide User Contact Info From Guests (https://vborg.vbsupport.ru/showthread.php?t=101180)
Default Avatar (https://vborg.vbsupport.ru/showthread.php?t=94878)
Pig's Subscription Gift (https://vborg.vbsupport.ru/showthread.php?t=105553) (only if you use paid subscriptions)
Auto PM after add Buddy! (https://vborg.vbsupport.ru/showthread.php?t=104872) (Optional)
Number of VBA Gallery Images in Profile (https://vborg.vbsupport.ru/showthread.php?t=100667&highlight=gallery)
------------------------------------------------
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 (http://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:{
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:
{
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
$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 - $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">
<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/forums/images/newstyle/nopropic.jpg">
</if></div><br /></center>
<strong><div align="center"><a href="/gallery/browseimages.php?do=member&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&u=$userinfo[userid]"><">
<img border="0" src="http://www.sevencityforums.com/forums/images/newstyle/misc_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&u=$userinfo[userid]" rel="nofollow">
<img border="0" src="http://www.sevencityforums.com/forums/images/newstyle/misc_mns/sendmailicon2.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&userlist=buddy&u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forums/images/newstyle/misc_mns/addbuddy.gif" width="79" height="22"></a>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forums/images/newstyle/misc_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&userlist=ignore&u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forums/images/newstyle/misc_mns/block.jpg" width="79" height="22" align="left"></a></p>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]">
<img border="0" src="http://www.sevencityforums.com/forums/images/newstyle/misc_mns/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 (http://%3c/strong%3E%3Cbr) /><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&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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&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:
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:
Body{background-image:url([B]type the image url here)}
BE SURE TO CLICK INSTALL!!!!
MissKalunji
02-28-2006, 03:06 AM
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
Brandon Sheley
02-28-2006, 03:07 AM
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 ?
HMBeaty
02-28-2006, 03:11 AM
You can see the demo of mine here http://redlinemotorsports.org/forum/member.php?u=1
My template 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 />"$userinfo[usertitle]"</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&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> </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] </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&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&userlist=buddy&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_buddy_list]</phrase></a>
<else />
<a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&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&userlist=ignore&u=$userinfo[userid]"><phrase 1="$userinfo[username]">$vbphrase[add_x_to_ignore_list]</phrase></a>
<else />
<a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&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&type=user&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&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&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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&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&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&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&puserid=$useri nfo[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=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>
MissKalunji
02-28-2006, 03:13 AM
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?
Brandon Sheley
02-28-2006, 03:15 AM
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 :)
VBUsers
02-28-2006, 03:15 AM
good stuff i will try this asap.
MissKalunji
02-28-2006, 03:16 AM
here's mine like i posted before
$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">"$userinfo[usertitle]"</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&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&userlist=buddy&u=$userinfo[userid]">Add
to Buddies</a> <else /> <a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&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&userlist=ignore&u=$userinfo[userid]">Add
to Ignore</a> <else /> <a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&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&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&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&puserid=$useri nfo[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=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&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&puserid=$useri nfo[userid]','pagerbuddylist','statusbar=no,menubar=no,toolba r=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] </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&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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_explai n" 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&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&u=$userinfo[userid]">$vbphrase[user_options]</a></div>
</if>
$comment_panel
$footer
</body>
</html>
MissKalunji
02-28-2006, 03:19 AM
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?
Stangsta
02-28-2006, 03:27 AM
Some screenshots up to give some idea, ill post more (better ones) later tonight when I finish the 1st post.
Brandon Sheley
02-28-2006, 03:32 AM
take your time,,looks good
are your member profiles visible by guest,, could we get a demo link maybe :)
MissKalunji
02-28-2006, 03:33 AM
look in the first post :)
KevNJ
02-28-2006, 03:42 AM
For the CSS Generator doesnt a line of code have to be added to the memberinfo template first ? Also Is the whole folder uploaded to the site for the users to access it ? Also how can we edit the CSS to add custom fields that relate to our site specific profiles ?
Brandon Sheley
02-28-2006, 03:54 AM
look at the demo site
where can i get the code?
hmm.. it's part of the vbportal.. I'll have to ask over there about this.. I'll get back to this thread about it.. thx :)
MissKalunji
02-28-2006, 03:55 AM
hmm.. it's part of the vbportal.. I'll have to ask over there about this.. I'll get back to this thread about it.. thx :)
ok sorry i dont have vbportal
MissKalunji
02-28-2006, 03:56 AM
For the CSS Generator doesnt a line of code have to be added to the memberinfo template first ? ?
you have to add this
<style type="text/css">
$post[field#]
</style>
You lost me there
Also Is the whole folder uploaded to the site for the users to access it ? Also how can we edit the CSS to add custom fields that relate to our site specific profiles
Protoman
02-28-2006, 04:52 AM
sweet hack, thx much :)
VaaKo
02-28-2006, 10:07 AM
whenever I upload the htaccess file to my forum dir, it gives me this
SORRY, there is an "500 Internal Server Error" !
Your browser sent a request that this server could not handle.
The request could not be executed/handled by the server due to malformed syntax or internal configuration.
The client should not repeat the request without modifications.
VaaKo
02-28-2006, 11:27 AM
is it important to upload the htaccess file?
MissKalunji
02-28-2006, 11:47 AM
is it important to upload the htaccess file?
No only if you wanna have your members going to their profile with
http://www.domain.com/forum/username
instead of
www.domain.com/forum/member.php?#
Snoop-It
02-28-2006, 12:24 PM
<a href="http://www.dholaholic.com/forum/jazz" target="_blank">www.dholaholic.com/forum/jazz</a>
used my own ideas developed from HR3RDGEN.
Great job you guys supporting this mod now, would help for newbies to start of their communities...
moonclamp
02-28-2006, 12:26 PM
No only if you wanna have your members going to their profile with
http://www.domain.com/forum/username
instead of
www.domain.com/forum/member.php?# (http://www.domain.com/forum/member.php?#)
Be careful if you have any directories that need accessing below the forum root.
EG. if someone doesn't know the full path and just types in site.com/forum/gallery (or similar) into their address bar it'll tell you there isn't a member called "gallery"
There may be a way to exclude certain terms ... however I don't know it.
VaaKo
02-28-2006, 01:04 PM
im facing a little problem, the quick links menu is not working in the profiles
http://www.oneforum.org/member.php?u=3569
check it and tell me how to fix it please
and look at the footer, it's pretty messed up
i'll post the code of my memberinfo template if u want!
VaaKo
02-28-2006, 01:05 PM
and im getting "done but with errors" in the status bar
MissKalunji
02-28-2006, 01:09 PM
and im getting "done but with errors" in the status bar
wich template did u use?
Stangsta
02-28-2006, 01:20 PM
im facing a little problem, the quick links menu is not working in the profiles
http://www.oneforum.org/member.php?u=3569
check it and tell me how to fix it please
and look at the footer, it's pretty messed up
i'll post the code of my memberinfo template if u want!Looks like you used the template from redlinemotorsports. I cannot support that, nor can I think of the problem off the top of my head. You might want to contact him to.
It looks ok om my end though.
VaaKo
02-28-2006, 01:31 PM
no mate, I used ur template first and it did the error so I used redlinemotorsports template after it and it seems its working fine now! :\
ronoxQ
02-28-2006, 02:13 PM
This is absolutely ingenious. I just have one question: how do you create a field that uses video code? And can it use an swf file instead?
I'll post here again as soon as I have this installed. This is perhaps even better than 3rdgen's, which is no easy feat.
Smiry Kin's
02-28-2006, 03:08 PM
No only if you wanna have your members going to their profile with
http://www.domain.com/forum/username
instead of
www.domain.com/forum/member.php?#
this doesnt work for me.... :(
also what different is this from the other profile thingy?
VaaKo
02-28-2006, 03:13 PM
can you tell me what's the code of the "buddies" block?
MissKalunji
02-28-2006, 04:17 PM
no mate, I used ur template first and it did the error so I used redlinemotorsports template after it and it seems its working fine now! :\
It will give you errors if you dont fix the profile field....or have the correct hack included with it....
MissKalunji
02-28-2006, 04:18 PM
this doesnt work for me.... :(
also what different is this from the other profile thingy?
contact me via pm ill help you out
MissKalunji
02-28-2006, 04:19 PM
This is absolutely ingenious. I just have one question: how do you create a field that uses video code? And can it use an swf file instead?
I'll post here again as soon as I have this installed. This is perhaps even better than 3rdgen's, which is no easy feat.
u just create a field with line txt
yeah you would be able to insert swf
in your template just insert the code for swf
but i doubt u'll be able to do both swf and videos....i'de have to check that out
MissKalunji
02-28-2006, 04:19 PM
can you tell me what's the code of the "buddies" block?
look in the first post....it has a link to it :)
The Chief
02-28-2006, 04:20 PM
yeah, our profiles look about the same as this one, we just have a different concept.
http://www.myetalk.com/forums/The Chief
Good luck on modifying your profiles lot :)
VaaKo
02-28-2006, 05:07 PM
MissKalunji, I seriously can't figure out which one is it!
i've installed the profile comment system and the vbfriends (just uploaded friends.php)
and still the buddies block is not appearing!
MissKalunji
02-28-2006, 05:16 PM
MissKalunji, I seriously can't figure out which one is it!
i've installed the profile comment system and the vbfriends (just uploaded friends.php)
and still the buddies block is not appearing!
read inside the install or readme txt it showsy ou what to add to your memberinfo to show ur friends
but im not using vbfriends im using the one from waza i think it scall vb buddies
https://vborg.vbsupport.ru/showthread.php?t=100457
Stangsta
02-28-2006, 05:19 PM
can you tell me what's the code of the "buddies" block?$FNB_HTMLis what I used, and what is in my template.
VaaKo
02-28-2006, 05:29 PM
$FNB_HTML
is this for vbfriends or vbbuddies?
VaaKo
02-28-2006, 06:08 PM
its weird but only 1 buddy is being listed on memberinfo, even though more than 1 has been added
Souli
02-28-2006, 06:09 PM
You must read post #85 and #102 in the vbfriends thread - after that you have the answer for the problem
You must install another hack that is not in the list here :( :
https://vborg.vbsupport.ru/showthread.php?p=873179
Stangsta
02-28-2006, 06:23 PM
is this for vbfriends or vbbuddies?Sorry, I was up late last night.
It was the one that Souli listed above. I changed the 1st post to reflect that.
VaaKo
02-28-2006, 06:31 PM
<a href="https://vborg.vbsupport.ru/showpost.php?p=870658&postcount=85" target="_blank">https://vborg.vbsupport.ru/showp...8&postcount=85</a>
this one
I got it now
but the vbfriends, the buddies must add each other in order to appear on the memberinfo
MissKalunji
02-28-2006, 06:44 PM
can I just ask how can u change the video?
how can the user do it?
once u enter the profile field he'll be able to insert the link from edit profile
MissKalunji
02-28-2006, 06:47 PM
heres the code for the video
<td class="alt2" align="center" valign="middle">
<fieldset class="fieldset"><EMBED SRC="$userinfo[field18]"></fieldset> </td>
</tr>
VaaKo
02-28-2006, 06:56 PM
yea I got it and you can get loads of videos links at www.videocodezone.com
I have an off-topic question, how could you parse bbcode or html in the description of the custom fields at sevencityforums.com ?
MissKalunji
02-28-2006, 06:58 PM
create a plugin name the way you want in member_complete
then paste this
{
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);
}
just change the field number to what u want and repeat the step for each field u wanna to be able to parse bbcode
VaaKo
02-28-2006, 07:07 PM
its still not working
I'm talkin about the description of the field in "Edit Profile"
https://vborg.vbsupport.ru/
MissKalunji
02-28-2006, 07:16 PM
its still not working
I'm talkin about the description of the field in "Edit Profile"
https://vborg.vbsupport.ru/
bbcode is by default ....
u mean being able to bold text etc?
right?
VaaKo
02-28-2006, 07:25 PM
you see the "click here" in the description of the field?
it's in a [url]
how to do that?
e-brooker
02-28-2006, 07:28 PM
Great hack!
Is it possible to let members decide if their profile can be seen by guests or not? Anyone know how to do this?
Cheers.
ronoxQ
02-28-2006, 07:37 PM
u just create a field with line txt
yeah you would be able to insert swf
in your template just insert the code for swf
but i doubt u'll be able to do both swf and videos....i'de have to check that out
So, you just have the field on the profile page display whatever the field links to? If so, then why could you only do video OR swf? Or did I just misread that (again)? ^_^
Stangsta
02-28-2006, 07:50 PM
Great hack!
Is it possible to let members decide if their profile can be seen by guests or not? Anyone know how to do this?
Cheers.You can do that with your usergroup permissions in your adminCP
Stangsta
02-28-2006, 07:54 PM
its still not working
I'm talkin about the description of the field in "Edit Profile"
http://img225.imageshack.us/img225/8568/untitled3ou.jpgIn the description of the field(s) you have set up to parse BBCODE, put this in it:You may use <b>BB CODE.</b> <a href="http://www.YOUR_DOMAIN_NAME.com/forums/misc.php?do=bbcode">CLICK HERE</a> to find out how!
MissKalunji
02-28-2006, 08:04 PM
So, you just have the field on the profile page display whatever the field links to? If so, then why could you only do video OR swf? Or did I just misread that (again)? ^_^
because to do so you would need a player that you would insert in the memberinfo
i dont know wich player plays swf or videos
so right now what this field does its windows media player pluging
does swf plays in media player?
no
so its either you find a player that plays both and insert in the profile template
you choose to only use videos insert the media player plugin
or you pick swf and insert it.
What you could do for swf insert the bbcode pluging and they can link through it in their profile
VaaKo
02-28-2006, 08:06 PM
ah yea it worked!
thx man
ronoxQ
02-28-2006, 08:15 PM
Okay, now I understand. Thanks a lot!
Stangsta
02-28-2006, 08:16 PM
ah yea it worked!
thx manDon't forget to click INSTALL :)
MissKalunji
02-28-2006, 08:20 PM
Okay, now I understand. Thanks a lot!
i had a flash video / music player i just need a little time :) and ill post it here
ronoxQ
02-28-2006, 08:42 PM
A few questions, since I'm still not very PHP-inclined:
1) What would I do to change it so that on most of the pages that link to a user's page (like from postbit, and a few others), it goes to the rewritten .htaccess page instead?
2) I have a .htaccess in place already that changes the same URL that's already set up to AmyKhar's Userpages mod. Though I'd prefer that go to the profile, could I create a /(username)/personalpage htaccess code?
ocmca
02-28-2006, 08:52 PM
I find it incredibly amazing that I was searching the forums for a hack like this yesterday, then on today, my birthday, I find it! Thanks for the birthday present, lol. I really want to install this but I do not understand this line
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.
What do you mean you have to create profile fields in the ACP? Does this mean that I have to edit something for each member of the forum in the ACP to let them use this hack? What profile fields are you talking about? Sorry for being so confused :( I will get installing the necessary hacks awhile because I am really excited about this :) Thanks to anyone who might help me!
VaaKo
02-28-2006, 08:52 PM
<a href="http://www.oneforum.org/member.php?u=3717" target="_blank">http://www.oneforum.org/member.php?u=3717</a>
that's what I've done
the custom css didn't work
it gave me loads of errors
ronoxQ
02-28-2006, 09:07 PM
I find it incredibly amazing that I was searching the forums for a hack like this yesterday, then on today, my birthday, I find it! Thanks for the birthday present, lol. I really want to install this but I do not understand this line
What do you mean you have to create profile fields in the ACP? Does this mean that I have to edit something for each member of the forum in the ACP to let them use this hack? What profile fields are you talking about? Sorry for being so confused :( I will get installing the necessary hacks awhile because I am really excited about this :) Thanks to anyone who might help me!
Well, in the AdminCP you can create fields for users to fill out, like Location, Age, Biography... etc. Each of these fields has a number, so you replace Field24 with Field##, and it'll display on the profiles.
influence
02-28-2006, 09:27 PM
isn't that yaxay's style you guys are using on sevencityforums.com?
Stangsta
02-28-2006, 09:29 PM
http://www.oneforum.org/member.php?u=3717
that's what I've done
the custom css didn't work
it gave me loads of errorsDid you change the profile field number in the memberinfo (on the very top) to mach your custom field that you made?
Ntfu2
02-28-2006, 09:29 PM
I think you should update the template edit, remove all links to sevencityforums.com
Provide either a text link in their place, or provide buttons, and point the images to the directory for the buttons.
Just a suggestion that will make everyone's life easier
$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">
<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.nowthats++++edup2.com/forums/images/misc/noavatar.gif">
</if></div><br /></center>
<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]
<div>$userinfo[onlinestatus]</div>
<br />
<div><strong>Last Online:</strong> $userinfo[lastactivitydate] at $userinfo[lastactivitytime]</div> </td>
</tr>
</tbody>
</table>
<p> <!--contact table information -->
<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&u=$userinfo[userid]"><">
Send Private Message</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>
<else /> No ICQ Information entered
</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&u=$userinfo[userid]" rel="nofollow">
Send Email</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>
<else />
No AIM name Set
</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&userlist=buddy&u=$userinfo[userid]">
Add To Buddy List</a>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]">
Remove From Buddy List</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>
<else />
No MSN Contact name set
</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&userlist=ignore&u=$userinfo[userid]">
Add To Ignore List</a></p>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]">
Remove From ignore List</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>
<else />
No Yahoo name Set
</if></div></td>
</tr>
</table>
<!-- /Contact Table Information -->
<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>
<!-- Profile Views Hack -->
<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>
<!-- end profile views -->
</tr>
<tr>
<td class="alt2"><div class="smallfont"><a href="search.php?$session[sessionurl]do=finduser&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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="https://payments.nowthats++++edup2.com/">Buy Supporter Access!</a>
</td>
</td></div>
</tr>
</table>
<br />
<!-- Media Block -->
<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[field15]"></div></td>
</tr>
</table>
</if>
<!-- End Media Block -->
<p>
<!-- interests table-->
<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[field7]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Books:</strong></span></td>
<td align="left" valign="top">$userinfo[field8]</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[field9]</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['field10']&1">
$comma Dating
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&2">
$comma Serious Relationships
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&4">
$comma Friends
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&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[field11]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Current Location:</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[field12]</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>
</table>
<!-- end interests 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[field16]</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&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>
also with the current mod rewrite you can no longer access your admincp by , http://www.forums/admincp/ you have to enter the /index.php at the end for it to work
Stangsta
02-28-2006, 09:47 PM
I think you should update the template edit, remove all links to sevencityforums.com
Provide either a text link in their place, or provide buttons, and point the images to the directory for the buttons.
Just a suggestion that will make everyone's life easier
$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">
<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.nowthats++++edup2.com/forums/images/misc/noavatar.gif">
</if></div><br /></center>
<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]
<div>$userinfo[onlinestatus]</div>
<br />
<div><strong>Last Online:</strong> $userinfo[lastactivitydate] at $userinfo[lastactivitytime]</div> </td>
</tr>
</tbody>
</table>
<p> <!--contact table information -->
<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&u=$userinfo[userid]"><">
Send Private Message</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>
<else /> No ICQ Information entered
</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&u=$userinfo[userid]" rel="nofollow">
Send Email</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>
<else />
No AIM name Set
</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&userlist=buddy&u=$userinfo[userid]">
Add To Buddy List</a>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]">
Remove From Buddy List</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>
<else />
No MSN Contact name set
</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&userlist=ignore&u=$userinfo[userid]">
Add To Ignore List</a></p>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]">
Remove From ignore List</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>
<else />
No Yahoo name Set
</if></div></td>
</tr>
</table>
<!-- /Contact Table Information -->
<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>
<!-- Profile Views Hack -->
<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>
<!-- end profile views -->
</tr>
<tr>
<td class="alt2"><div class="smallfont"><a href="search.php?$session[sessionurl]do=finduser&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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="https://payments.nowthats++++edup2.com/">Buy Supporter Access!</a>
</td>
</td></div>
</tr>
</table>
<br />
<!-- Media Block -->
<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[field15]"></div></td>
</tr>
</table>
</if>
<!-- End Media Block -->
<p>
<!-- interests table-->
<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[field7]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Books:</strong></span></td>
<td align="left" valign="top">$userinfo[field8]</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[field9]</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['field10']&1">
$comma Dating
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&2">
$comma Serious Relationships
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&4">
$comma Friends
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&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[field11]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Current Location:</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[field12]</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>
</table>
<!-- end interests 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[field16]</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&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>
Good suggestion, I will work on that tonight
Ntfu2
02-28-2006, 09:59 PM
:lol: I got what i could for you, but then i left the link to my default avatar in there :oops:
MissKalunji
02-28-2006, 10:04 PM
I think you should update the template edit, remove all links to sevencityforums.com
Provide either a text link in their place, or provide buttons, and point the images to the directory for the buttons.
Just a suggestion that will make everyone's life easier
$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">
<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.nowthats++++edup2.com/forums/images/misc/noavatar.gif">
</if></div><br /></center>
<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]
<div>$userinfo[onlinestatus]</div>
<br />
<div><strong>Last Online:</strong> $userinfo[lastactivitydate] at $userinfo[lastactivitytime]</div> </td>
</tr>
</tbody>
</table>
<p> <!--contact table information -->
<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&u=$userinfo[userid]"><">
Send Private Message</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>
<else /> No ICQ Information entered
</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&u=$userinfo[userid]" rel="nofollow">
Send Email</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>
<else />
No AIM name Set
</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&userlist=buddy&u=$userinfo[userid]">
Add To Buddy List</a>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]">
Remove From Buddy List</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>
<else />
No MSN Contact name set
</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&userlist=ignore&u=$userinfo[userid]">
Add To Ignore List</a></p>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]">
Remove From ignore List</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>
<else />
No Yahoo name Set
</if></div></td>
</tr>
</table>
<!-- /Contact Table Information -->
<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>
<!-- Profile Views Hack -->
<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>
<!-- end profile views -->
</tr>
<tr>
<td class="alt2"><div class="smallfont"><a href="search.php?$session[sessionurl]do=finduser&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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="https://payments.nowthats++++edup2.com/">Buy Supporter Access!</a>
</td>
</td></div>
</tr>
</table>
<br />
<!-- Media Block -->
<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[field15]"></div></td>
</tr>
</table>
</if>
<!-- End Media Block -->
<p>
<!-- interests table-->
<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[field7]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Books:</strong></span></td>
<td align="left" valign="top">$userinfo[field8]</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[field9]</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['field10']&1">
$comma Dating
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&2">
$comma Serious Relationships
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&4">
$comma Friends
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&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[field11]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Current Location:</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[field12]</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>
</table>
<!-- end interests 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[field16]</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&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>
also with the current mod rewrite you can no longer access your admincp by , http://www.forums/admincp/ you have to enter the /index.php at the end for it to work
Not true it never worked with even without .htaccess if you put it as www.domain.com/forum/admincp <-- without the bar
but will work fine www.domain.com/forum/admincp/ <---
ocmca
02-28-2006, 10:17 PM
Well, in the AdminCP you can create fields for users to fill out, like Location, Age, Biography... etc. Each of these fields has a number, so you replace Field24 with Field##, and it'll display on the profiles.
ok great, now I understand.. Thanks a lot
ocmca
02-28-2006, 11:48 PM
*sigh* I knew it was too good to be true... Looks like I cannot do this since the vbjournal doesn't work with php5... I was really really excited about this hack too, it was almost like a birthday present like I said before, lol.... So I take it there is no option for me just because I use php5? :( :(
MissKalunji
02-28-2006, 11:57 PM
wait for the update :-/ i guess
moonclamp
03-01-2006, 12:02 AM
*sigh* I knew it was too good to be true... Looks like I cannot do this since the vbjournal doesn't work with php5... I was really really excited about this hack too, it was almost like a birthday present like I said before, lol.... So I take it there is no option for me just because I use php5? :( :(
I have vbjournal working with php5. I did have to do a couple of template edits though. Think I had to insert ' marks into braces somewhere in a couple of places, can't for the life of me remember where though, so I'm not much help apart from saying that it can be done.
It might have been a matter of going through the templates and changing $bbuserinfo[private] to $bbuserinfo['private'] ... PLEASE don't take this as gospel though, I honestly cannot remember.
Smiry Kin's
03-01-2006, 12:27 AM
can you tell me what's the code of the "buddies" block?
check the buddies plugin dude
Smiry Kin's
03-01-2006, 12:28 AM
wait for the update :-/ i guess
dude i pm'd ya
I threw together a quick little member home page, to look like the myspace home page a user sees. It's not a "real" one, in other words you still need the u=userid on the url to view it but it works. This is modified code from this thread. So you'll need to modify the field numbers accordingly.
Create a new template and call it:
myspace_home
Then put this code into it:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]</title>
</head>
<body>
$header
$navbar
<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>Hello, $userinfo[username]</div></font></strong>
</tr>
<!--new posts and reps start --><tr>
<td class="alt2"><div class="smallfont">There Have Been $pcount New Posts Since Your Last Visit</div>
<td class="alt2"><div class="smallfont">$rcount</div></td></tr>
<!--new posts and reps end -->
<tbody>
<tr class="alt1">
<td><div align="right"><center><if condition="$show['avatar']">
<div class="smallfont">
<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="$stylevar[imgdir_misc]/noavatar.gif">
</if></div><br /><center><legend><div class="smallfont">View My:</legend><br/><a href="profile.php?u=$userinfo[userid]">Profile</a> | <a href="journal.php?u=$userinfo[userid]">Journal</a></div></center></center>
<td align="left" valign="top" class="text">
<div class="smallfont"><a href="./search.php?do=finduser&u=$userinfo[userid]">View Your Posts</a><br/> <a href="./search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$userinfo[username]">View Your Threads</a><br/>
<a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a>
<br/>
<a href="profile.php?$session[sessionurl]do=editpassword">$vbphrase[edit_email_and_password]</a><br/>
<a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a> <br/>
<a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a><br/>
<a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a> <br/>
<a href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a><br/>
<br/></td></div>
<br/>
</tr> </tbody>
</table>
<br/>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr class="tcat">
<td colspan="2"><strong>Tell Others About Your Space</td></font></strong>
</tr>
<tr class="alt1">
<td nowrap="nowrap" width="50%">My Page<div align="left"> <div class="smallfont">
<a href="$vboptions[bburl]/$userinfo[username]">$vboptions[bburl]/$userinfo[username]</a>
</td> <td nowrap="nowrap" width="50%">My Journal <div align="left"> <div class="smallfont">
<a href="$vboptions[bburl]/journal.php?u=$userinfo[userid]">$vboptions[bburl]/journal.php?u=$userinfo[userid]</a>
</td>
</table>
<p> <!--contact table information -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr class="tcat">
<td colspan="2"><strong>Mail</td></font></strong>
</tr>
<tr class="alt1">
<td height="5" nowrap="nowrap" width="50%"> <div align="left"> <div class="smallfont">
<a href="private.php">
Inbox</a>
</td>
<td height="5" nowrap="nowrap" valign="top" width="50%">
<div align="left"> <div class="smallfont">
<a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">Friends</a></div></td>
</tr>
<tr class="alt1">
<td height="5" nowrap="nowrap" valign="top" width="50%">
<div align="left"><div class="smallfont">
<a href="private.php?s=&pp=25&folderid=-1">
Sent Items</a>
</div></td>
<td class="alt1" height="5" nowrap="nowrap" valign="middle" width="50%">
<div align="left"> <div class="smallfont">
<a href="journal.php?do=addentry">Post Journal Entry</a>
</div></td>
</tr>
</table>
<!-- /Contact Table Information -->
<p>
</td>
<td valign="top" width="60%">
<br />$FNB_HTML<br />
<p>$comment_panel</p></td>
</tr></table></td>
</table>
<br />
$footer
<br />
</body>
</html>
You'll need to install this hack if you want the new posts/reputation messages to show up: https://vborg.vbsupport.ru/showthread.php?s=&threadid=91146
Otherwise just find that code and delete it. Also the rep message in the example will not show up for you, that's just for my board so don't worry. That message will be whatever you decide when you install the hack.
Then duplicate your member.php file and call it space.php
Find:
$globaltemplates = array(
'MEMBERINFO',
Change it to:
$globaltemplates = array(
'myspace_home',
Then find:
$templatename = iif($quick, 'memberinfo_quick', 'MEMBERINFO');
Change it to:
$templatename = iif($quick, 'memberinfo_quick', 'myspace_home');
Then save your space.php file and upload it to the root of your forum.
Then tell your members to bookmark or do whatever you want with this link:
www.yoursite.com/space.php?u=userid
or
www.yoursite.com/forum/space.php?u=userid
whichever you use.
Like I said, it's not perfect, but it's something to start with and match the "myspace" feel pretty much. Maybe I'll tweak it a little more some other time. Anyways, it should look something like this:
lightwave
03-01-2006, 01:55 AM
how come my buddies picture doesnt show =/
MissKalunji
03-01-2006, 02:07 AM
dude i pm'd ya
im not a dude im a dudette :nervous:
Smiry Kin's
03-01-2006, 02:10 AM
im not a dude im a dudette :nervous:
sure?? lucky you don't forget that aswell! lol
MissKalunji
03-01-2006, 02:11 AM
I threw together a quick little member home page, to look like the myspace home page a user sees. It's not a "real" one, in other words you still need the u=userid on the url to view it but it works. This is modified code from this thread. So you'll need to modify the field numbers accordingly.
Create a new template and call it:
myspace_home
Then put this code into it:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]</title>
</head>
<body>
$header
$navbar
<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>Hello, $userinfo[username]</div></font></strong>
</tr>
<!--new posts and reps start --><tr>
<td class="alt2"><div class="smallfont">There Have Been $pcount New Posts Since Your Last Visit</div>
<td class="alt2"><div class="smallfont">$rcount</div></td></tr>
<!--new posts and reps end -->
<tbody>
<tr class="alt1">
<td><div align="right"><center><if condition="$show['avatar']">
<div class="smallfont">
<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="$stylevar[imgdir_misc]/noavatar.gif">
</if></div><br /><center><legend><div class="smallfont">View My:</legend><br/><a href="profile.php?u=$userinfo[userid]">Profile</a> | <a href="journal.php?u=$userinfo[userid]">Journal</a></div></center></center>
<td align="left" valign="top" class="text">
<div class="smallfont"><a href="./search.php?do=finduser&u=$userinfo[userid]">View Your Posts</a><br/> <a href="./search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$userinfo[username]">View Your Threads</a><br/>
<a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a>
<br/>
<a href="profile.php?$session[sessionurl]do=editpassword">$vbphrase[edit_email_and_password]</a><br/>
<a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a> <br/>
<a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a><br/>
<a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a> <br/>
<a href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a><br/>
<br/></td></div>
<br/>
</tr> </tbody>
</table>
<br/>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr class="tcat">
<td colspan="2"><strong>Tell Others About Your Space</td></font></strong>
</tr>
<tr class="alt1">
<td nowrap="nowrap" width="50%">My Page<div align="left"> <div class="smallfont">
<a href="$vboptions[bburl]/$userinfo[username]">$vboptions[bburl]/$userinfo[username]</a>
</td> <td nowrap="nowrap" width="50%">My Journal <div align="left"> <div class="smallfont">
<a href="$vboptions[bburl]/journal.php?u=$userinfo[userid]">$vboptions[bburl]/journal.php?u=$userinfo[userid]</a>
</td>
</table>
<p> <!--contact table information -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr class="tcat">
<td colspan="2"><strong>Mail</td></font></strong>
</tr>
<tr class="alt1">
<td height="5" nowrap="nowrap" width="50%"> <div align="left"> <div class="smallfont">
<a href="private.php">
Inbox</a>
</td>
<td height="5" nowrap="nowrap" valign="top" width="50%">
<div align="left"> <div class="smallfont">
<a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">Friends</a></div></td>
</tr>
<tr class="alt1">
<td height="5" nowrap="nowrap" valign="top" width="50%">
<div align="left"><div class="smallfont">
<a href="private.php?s=&pp=25&folderid=-1">
Sent Items</a>
</div></td>
<td class="alt1" height="5" nowrap="nowrap" valign="middle" width="50%">
<div align="left"> <div class="smallfont">
<a href="journal.php?do=addentry">Post Journal Entry</a>
</div></td>
</tr>
</table>
<!-- /Contact Table Information -->
<p>
</td>
<td valign="top" width="60%">
<br />$FNB_HTML<br />
<p>$comment_panel</p></td>
</tr></table></td>
</table>
<br />
$footer
<br />
</body>
</html>
You'll need to install this hack if you want the new posts/reputation messages to show up: https://vborg.vbsupport.ru/showthread.php?s=&threadid=91146
Otherwise just find that code and delete it. Also the rep message in the example will not show up for you, that's just for my board so don't worry. That message will be whatever you decide when you install the hack.
Then duplicate your member.php file and call it space.php
Find:
$globaltemplates = array(
'MEMBERINFO',
Change it to:
$globaltemplates = array(
'myspace_home',
Then find:
$templatename = iif($quick, 'memberinfo_quick', 'MEMBERINFO');
Change it to:
$templatename = iif($quick, 'memberinfo_quick', 'myspace_home');
Then save your space.php file and upload it to the root of your forum.
Then tell your members to bookmark or do whatever you want with this link:
www.yoursite.com/space.php?u=userid
or
www.yoursite.com/forum/space.php?u=userid
whichever you use.
Like I said, it's not perfect, but it's something to start with and match the "myspace" feel pretty much. Maybe I'll tweak it a little more some other time. Anyways, it should look something like this:
very clever:)
lightwave
03-01-2006, 02:16 AM
when i did that i got
This user has not registered and therefore does not have a profile to view.
when i did that i got
This user has not registered and therefore does not have a profile to view.
Did what? If you're referring to my post you can't just go to space.php you have to go to space.php?u=1 (or whatever your userid is on your board)
lightwave
03-01-2006, 02:24 AM
yea now it works =D.. nice job man
lightwave
03-01-2006, 02:30 AM
<a href="http://www.rhyme4fame.com/forums/member.php?u=1" target="_blank">http://www.rhyme4fame.com/forums/member.php?u=1</a>
can anyone help me? Why Doesnt My Buddies Avy Show?
MissKalunji
03-01-2006, 02:40 AM
http://www.rhyme4fame.com/forums/member.php?u=1
can anyone help me? Why Doesnt My Buddies Avy Show?
wich buddy did u install and did you added the $ to it?
lightwave
03-01-2006, 02:41 AM
i added the Friends and/or Buddies on Profile by jj
n added the $ where
yinyang
03-01-2006, 02:48 AM
i just want to say thank you for your hard work. this looks great!
Stangsta
03-01-2006, 02:58 AM
For those having trouble with the .htaccess file, please put it in your forum root, not the website root. I updated the 1st post.
Stangsta
03-01-2006, 03:28 AM
i added the Friends and/or Buddies on Profile by jj
n added the $ whereits already in my memberinfo template, no need to add it.
MR-2ZZ
03-01-2006, 04:28 AM
I have it in my forum root with no luck.
/forum/.htaccess
nothing...
Stangsta
03-01-2006, 04:30 AM
I have it in my forum root with no luck.
/forum/.htaccess
nothing...Are you running Apache?
MR-2ZZ
03-01-2006, 04:42 AM
I am
GamerJunk.net
03-01-2006, 04:48 AM
I think you should update the template edit, remove all links to sevencityforums.com
Provide either a text link in their place, or provide buttons, and point the images to the directory for the buttons.
Just a suggestion that will make everyone's life easier
$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">
<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.nowthats++++edup2.com/forums/images/misc/noavatar.gif">
</if></div><br /></center>
<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]
<div>$userinfo[onlinestatus]</div>
<br />
<div><strong>Last Online:</strong> $userinfo[lastactivitydate] at $userinfo[lastactivitytime]</div> </td>
</tr>
</tbody>
</table>
<p> <!--contact table information -->
<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&u=$userinfo[userid]"><">
Send Private Message</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>
<else /> No ICQ Information entered
</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&u=$userinfo[userid]" rel="nofollow">
Send Email</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>
<else />
No AIM name Set
</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&userlist=buddy&u=$userinfo[userid]">
Add To Buddy List</a>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]">
Remove From Buddy List</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>
<else />
No MSN Contact name set
</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&userlist=ignore&u=$userinfo[userid]">
Add To Ignore List</a></p>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]">
Remove From ignore List</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>
<else />
No Yahoo name Set
</if></div></td>
</tr>
</table>
<!-- /Contact Table Information -->
<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>
<!-- Profile Views Hack -->
<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>
<!-- end profile views -->
</tr>
<tr>
<td class="alt2"><div class="smallfont"><a href="search.php?$session[sessionurl]do=finduser&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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="https://payments.nowthats++++edup2.com/">Buy Supporter Access!</a>
</td>
</td></div>
</tr>
</table>
<br />
<!-- Media Block -->
<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[field15]"></div></td>
</tr>
</table>
</if>
<!-- End Media Block -->
<p>
<!-- interests table-->
<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[field7]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Books:</strong></span></td>
<td align="left" valign="top">$userinfo[field8]</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[field9]</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['field10']&1">
$comma Dating
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&2">
$comma Serious Relationships
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&4">
$comma Friends
<if condition="$comma =','"></if>
</if>
<if condition="$post['field10']&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[field11]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Current Location:</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[field12]</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>
</table>
<!-- end interests 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[field16]</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&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>
also with the current mod rewrite you can no longer access your admincp by , http://www.forums/admincp/ you have to enter the /index.php at the end for it to work
Using this code which is the best one....mine comes out kinda ugly....any suggestions on how to fix it to match my layout?
http://www.gamerjunk.net/forum/members/mike.html
MissKalunji
03-01-2006, 04:50 AM
I have it in my forum root with no luck.
/forum/.htaccess
nothing...
try in the webroot?
MR-2ZZ
03-01-2006, 04:57 AM
No workie :(
Smiry Kin's
03-01-2006, 05:05 AM
dun work for me either... :(
would be cool, if some one found out why.. lol
MissKalunji
03-01-2006, 05:14 AM
ok guys upload my .htaccess last try :(
i tested it and works!
MR-2ZZ
03-01-2006, 05:19 AM
Your Zip wont zip now :(
MissKalunji
03-01-2006, 05:19 AM
<a href="http://www.dancehallareaz.com/forum/htaccess.rar" target="_blank">http://www.dancehallareaz.com/forum/htaccess.rar</a>
Smiry Kin's
03-01-2006, 05:46 AM
http://www.dancehallareaz.com/forum/htaccess.rar
getting closer.. o.0
when i go to my forum home, e.g my domain.com i get this:
This user has not registered and therefore does not have a profile to view.
=-/ so something changed, cos i didnt get that before. lol anyways... mydomain.com/admin doesnt works..
MissKalunji
03-01-2006, 05:50 AM
getting closer.. o.0
when i go to my forum home, e.g my domain.com i get this:
This user has not registered and therefore does not have a profile to view.
=-/ so something changed, cos i didnt get that before. lol anyways... mydomain.com/admin doesnt works..
it has to be mydomain.com/admin/
and for domain .com uhm
MissKalunji
03-01-2006, 05:52 AM
and if you wanna get rid of the error add .html after (^[-_A-Za-z0-9]*)
so it would be domain.com/user.html
Smiry Kin's
03-01-2006, 05:55 AM
it has to be mydomain.com/admin/
and for domain .com uhm
even with the end / isnt working :(
Smiry Kin's
03-01-2006, 05:57 AM
and if you wanna get rid of the error add .html after (^[-_A-Za-z0-9]*)
so it would be domain.com/user.html
still didnt work :P
This user has not registered and therefore does not have a profile to view.
RewriteEngine On
RewriteRule ^$ member.php
RewriteRule (^[-_A-Za-z0-9\ ]*$).html member.php?&username=$1
Smiry Kin's
03-01-2006, 06:01 AM
and if you wanna get rid of the error add .html after (^[-_A-Za-z0-9]*)
so it would be domain.com/user.html
tht codes different? o.0
(^[-_A-Za-z0-9\ ]*$) ius what i got or did ya just miss out the $
MissKalunji
03-01-2006, 06:05 AM
tht codes different? o.0
(^[-_A-Za-z0-9\ ]*$) ius what i got or did ya just miss out the $
yeah well i didnt figure this out
the way to access the forum would be
www.domain.com/forum/index.php
and admin
www.domain.com/admin/index.php
cause without the index.php its taking it as like you were looking for a user profile
hopefully someone else will find my error....
MissKalunji
03-01-2006, 06:09 AM
ok i figured it out :-) redownload the rar
and voila!
Smiry Kin's
03-01-2006, 06:21 AM
i ment admin as in the username
domain.com/admin etc etc
redownload which rar?
MissKalunji
03-01-2006, 06:25 AM
that one : http://www.dancehallareaz.com/forum/htaccess.rar
so next time you go to domain.com/forum/
you wont see that error : This user has not registered and therefore does not have a profile to view
VaaKo
03-01-2006, 06:29 AM
Did you change the profile field number in the memberinfo (on the very top) to mach your custom field that you made?
yea I did that and the custom css worked in the profiles but it gave me "done but with errors" and the standard css of the template get deleted when I use the css
Smiry Kin's
03-01-2006, 06:29 AM
that one : http://www.dancehallareaz.com/forum/htaccess.rar
so next time you go to domain.com/forum/
you wont see that error : This user has not registered and therefore does not have a profile to view
yeh that works now,
but still
Not Found
The requested URL /admin/ was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
MissKalunji
03-01-2006, 06:33 AM
yeh that works now,
but still
Not Found
The requested URL /admin/ was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
can i have a link? plz
MissKalunji
03-01-2006, 06:35 AM
yea I did that and the custom css worked in the profiles but it gave me "done but with errors" and the standard css of the template get deleted when I use the css
try that one
<style type="text/css">
$post[field#]
</style>
under </title>
VaaKo
03-01-2006, 06:44 AM
I posted this in the css field
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}
but it didn't exactly work though it didnt give me error
http://www.oneforum.org/member.php?u=3569
Smiry Kin's
03-01-2006, 06:45 AM
ok would help if i saved the htaccess its working now,,
how do i replace this everwhere in the forums..
e.g postbit. whos online, lastest threads, member list, etc etc
from memberblahblah=ID
to /username
also how do i make it work for ppl with .'s and ! and anything else in there name?
MissKalunji
03-01-2006, 12:14 PM
I posted this in the css field
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}
but it didn't exactly work though it didnt give me error
http://www.oneforum.org/member.php?u=3569
try the css generator i dont know much bout css thats why i got a generator done
MissKalunji
03-01-2006, 12:14 PM
ok would help if i saved the htaccess its working now,,
how do i replace this everwhere in the forums..
e.g postbit. whos online, lastest threads, member list, etc etc
from memberblahblah=ID
to /username
also how do i make it work for ppl with .'s and ! and anything else in there name?
glad it worked
as for the rest i dont know im a newbie at php :nervous:
bushka
03-01-2006, 01:14 PM
Hey,
Good work with this mod, trying to get my head around it now, gonna be my biggest challenge yet but its a good learning experience.
I have a request that would be very helpful to me.
In the first post there is an example MEMBERINFO, it refers to lots of site specific profile fields, I would really appreciate a list of all the profile fields relating to that example. Looking through the code I'm not sure what some of the fields doing there and what the result is.
Is there any way you could give us/me a screen/list please?
quanvo81
03-01-2006, 01:16 PM
Check out my profile on my upcoming site :
http://www.asiansexlife.com/forum/Casanova
Note: Only enter if you are 18 or over please.
My site is waiting for legal paperwork finish before I can start to add content.
ronoxQ
03-01-2006, 02:24 PM
*sigh* I knew it was too good to be true... Looks like I cannot do this since the vbjournal doesn't work with php5... I was really really excited about this hack too, it was almost like a birthday present like I said before, lol.... So I take it there is no option for me just because I use php5? :( :(
VBJournal isn't REQUIRED for the mod, it's just a feature you'll want if you're trying to emulate MySpace. I was using Drupal's blogging system, and I have a link to that rather than the journal.
Also, I asked this before, but would it be possible to send the .htaccess to another page? Like perhaps /forum/user/user_name? I already hae another htaccess, and I don't know how to get them BOTH to run well.
I asked on the Buddies hack page about the avater-lessness, hopefully there'll be a response soon.
EDIT: jj (hack author of buddies in profile) said the following:
It is working correctly. Only "Friends" are shown with their avatars above the buddy and buddy-by list. Just look the screenshots i attached. If you want to show only the buddy list you have to set it in acp. It's the first option at top, where you define to show friends or not, set it to no.
So it seems like you'd need the Friends hack as well.
ocmca
03-01-2006, 04:43 PM
VBJournal isn't REQUIRED for the mod, it's just a feature you'll want if you're trying to emulate MySpace. I was using Drupal's blogging system, and I have a link to that rather than the journal.
Do you mind linking me to your site so I can see the difference between the blogging system and the vbjournal when integrated into this hack?
himerus
03-01-2006, 05:29 PM
I like it.... I may start a site just based off of this!
T3MEDIA
03-01-2006, 05:45 PM
question... what if I wanted my htacess to say members.mysite.com/username
how would I cange that WITHOUT affecting other URLS... I had it working but when members tried to change thier passwords it would say user does not have a profile thus their page does not exist. Well that pissed alot of people off.
Thanks.
forumthemes
03-01-2006, 06:03 PM
*** Clicks Install *** :) Thanks
ronoxQ
03-01-2006, 06:59 PM
Do you mind linking me to your site so I can see the difference between the blogging system and the vbjournal when integrated into this hack?
I used Tamarian's vB Drupal hack found here. (https://vborg.vbsupport.ru/showthread.php?p=850363) It adds a Blog profile bit automatically.
ocmca
03-01-2006, 07:34 PM
I used Tamarian's vB Drupal hack found here. (https://vborg.vbsupport.ru/showthread.php?p=850363) It adds a Blog profile bit automatically.
So basically it is the same concept as the vbjournal? Do you mind doing s small quick writeup to show how you used this hack with the drupal instead of the vbjournal for a newbie? If you do, thanks a lot,If not thanks for the info anyway.
MissKalunji
03-01-2006, 09:12 PM
question... what if I wanted my htacess to say members.mysite.com/username
how would I cange that WITHOUT affecting other URLS... I had it working but when members tried to change thier passwords it would say user does not have a profile thus their page does not exist. Well that pissed alot of people off.
Thanks.
you asking like if your forum url is www.domain.com/forum/username
and you want it to be
www.domain.com/username
is that it?
EricaJoy
03-01-2006, 11:21 PM
wow that kinda looks almost just like my MEMBERINFO template. go figure.
foreverdarkness
03-01-2006, 11:28 PM
Check out my profile so far on my site...still needs a little bit of work but its coming along. Curious if anyone has any suggestions or thoughts on it.
http://www.foreverdarkness.com/forum/member.php?u=1
mark1491
03-01-2006, 11:31 PM
I had been looking at the orginal mod since it was posted and now this one, and I was wondering if anyone figured out how to display the multiple selection menu and multiple selection checkboxes, on the profile home page.
Everytime i try to do this i get numbers displayed instead of the text that they have selected to display.
I read about this on the earlier mod, but it wasn't very clear on how to fix this problem, to show the appropriate results when multiple selection menu or multiple selection checkboxes are used.
Thanks in advance!
EricaJoy
03-01-2006, 11:37 PM
I had been looking at the orginal mod since it was posted and now this one, and I was wondering if anyone figured out how to display the multiple selection menu and multiple selection checkboxes, on the profile home page.
Everytime i try to do this i get numbers displayed instead of the text that they have selected to display.
I read about this on the earlier mod, but it wasn't very clear on how to fix this problem, to show the appropriate results when multiple selection menu or multiple selection checkboxes are used.
Thanks in advance!i figured it and set it up for djsydeburnz a while back. theres a thread on vb.com that addresses it kind of. if i can find the link again, i'll post what i did.
Stangsta
03-02-2006, 12:22 AM
Check out my profile so far on my site...still needs a little bit of work but its coming along. Curious if anyone has any suggestions or thoughts on it.
http://www.foreverdarkness.com/forum/member.php?u=1
Looks nice!
You know, there has been one thing bugging me that maybe you can answer. On the Buddies, mine just stretches the images to a pre determined size rather than leaving them the size they were. Any ideas?
Stangsta
03-02-2006, 12:24 AM
I had been looking at the orginal mod since it was posted and now this one, and I was wondering if anyone figured out how to display the multiple selection menu and multiple selection checkboxes, on the profile home page.
Everytime i try to do this i get numbers displayed instead of the text that they have selected to display.
I read about this on the earlier mod, but it wasn't very clear on how to fix this problem, to show the appropriate results when multiple selection menu or multiple selection checkboxes are used.
Thanks in advance!Is this what you are referring to?
<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>
mark1491
03-02-2006, 12:48 AM
Is this what you are referring to?
<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>
Yeah that is what I have been looking for, thanks a lot for your help and nice work with this mod!
Brandon Sheley
03-02-2006, 02:26 AM
can you please include install instructions in the zip...
i don't necessarily want to be looking at this thread when i test this out..
thank you
ps.. i don't want to use your .htaccess file.. my profiles are already rewritten.. will this still work ?
MR-2ZZ
03-02-2006, 02:31 AM
.htaccess wont work for me :(
MissKalunji
03-02-2006, 02:48 AM
.htaccess wont work for me :(
1. first where did you upload it?
it suppose to be in forum root
2. did you use that one : https://vborg.vbsupport.ru/showpost.php?p=913251&postcount=100
?
MissKalunji
03-02-2006, 02:49 AM
can you please include install instructions in the zip...
i don't necessarily want to be looking at this thread when i test this out..
thank you
ps.. i don't want to use your .htaccess file.. my profiles are already rewritten.. will this still work ?
i dont quit eunderstand your question
your profiles already rewritten?
will what work?
moonclamp
03-02-2006, 03:14 AM
The .htaccess rewrite will not work on all usernames.
Try it on some of the more obscure characters and see. It will not work with * ~ or multiple spaces. I have a user called ~L O U I S E~ and all it does is cause 404 errors. I think you'd have to disallow special characters and spaces for this to work properly.
Plus, like I mentioned before, if you have your vbagallery under the forum root you will not be able to type in site.com/forums/gallery without getting a "user doesn't exist" error.
You can try adding a RewriteRule (^[/gallery]*$) /forums/gallery/index.php but this will cause a server configuration error on browseimages.php.
I will welcome it if anyone can get around these errors though.
Brandon Sheley
03-02-2006, 03:28 AM
i dont quit eunderstand your question
your profiles already rewritten?
will what work?
sorry, I'm asking can u include the instructions in a text file ? or is this something that doesn't really use the standard install text..
oops thought u asked something else..
about the htaccess file.. i don't want or need it.. my profiles are already seo'd
like
//locoforum.com/forums/member-brandon.html
MissKalunji
03-02-2006, 03:53 AM
sorry, I'm asking can u include the instructions in a text file ? or is this something that doesn't really use the standard install text..
oops thought u asked something else..
about the htaccess file.. i don't want or need it.. my profiles are already seo'd
like
//locoforum.com/forums/member-brandon.html
oh ok ask Stangsta
Blown Beauty
03-02-2006, 04:05 AM
Thanks for the AWESOME mod! Great job!
One issue I'm having is the BB Code Plugin didn't work for me. :o
I installed the plugin exactly as told (altho I'm new there), changed/matched the field#'s....Yet I'm still unable to get the images/smilies/etc. to show up in those fields.
:ermm: Any ideas? THANKS AGAIN!! :)
P.S. Do you have a code for PhotoPost's VB Gallery? (i.e. ...gallery/showgallery.php?ppuser=173&cat=500)
MissKalunji
03-02-2006, 04:10 AM
Thanks for the AWESOME mod! Great job!
One issue I'm having is the BB Code Plugin didn't work for me. :o
I installed the plugin exactly as told (altho I'm new there), changed/matched the field#'s....Yet I'm still unable to get the images/smilies/etc. to show up in those fields.
:ermm: Any ideas? THANKS AGAIN!! :)
P.S. Do you have a code for PhotoPost's VB Gallery? (i.e. ...gallery/showgallery.php?ppuser=173&cat=500)
did you create the pluging IN member_complete?
Blown Beauty
03-02-2006, 04:15 AM
did you create the pluging IN member_complete?
Add New Plugin > Hook Location = member_complete > Title = [Comments]: BB Code > Active > Save (of course, changing the field#'s)
Was that correct?
MissKalunji
03-02-2006, 04:19 AM
isnt bbcode only like bold italic etc?
Blown Beauty
03-02-2006, 04:24 AM
I thought this allowed everything the Standard Editor did. [img] [i] [url] [color=], etc.?
Regardless, the simple stuff isn't working either. :o I'd be quick to blame myself but I THINK I did it right. Thanks for helping!
caliman
03-02-2006, 04:31 AM
@Stangsta - I can't help thinking how cool it would be if this mod integrated with ebux - in other words, new user gets standard vb profile, but can buy all the enhancements shown in your mod one at a time through the estore.
MissKalunji
03-02-2006, 04:33 AM
@Stangsta - I can't help thinking how cool it would be if this mod integrated with ebux - in other words, new user gets standard vb profile, but can buy all the enhancements shown in your mod one at a time through the estore.
i think there is already......check on ebux......
MissKalunji
03-02-2006, 04:35 AM
I thought this allowed everything the Standard Editor did. [img] [i] [url] [color=], etc.?
Regardless, the simple stuff isn't working either. :o I'd be quick to blame myself but I THINK I did it right. Thanks for helping!
do you have pluging accelerator? rebuilt it?
Blown Beauty
03-02-2006, 04:49 AM
do you have pluging accelerator? rebuilt it?
I'm assuming not. I simply added the plugin via plugin manager. Forgive me, I'm a noob at plugins. But the install seemed easy enough. :o Dunno where I went wrong.
Stangsta
03-02-2006, 04:58 AM
sorry, I'm asking can u include the instructions in a text file ? or is this something that doesn't really use the standard install text..I would, but it would be rather lengthy whereas by using the [code] block in the 1st post, it has a scrollbar to condense it.
I have no problem making it, but it would be ugly due to the size. :(
Stangsta
03-02-2006, 05:02 AM
Thanks for the AWESOME mod! Great job!
One issue I'm having is the BB Code Plugin didn't work for me. :o
I installed the plugin exactly as told (altho I'm new there), changed/matched the field#'s....Yet I'm still unable to get the images/smilies/etc. to show up in those fields.
:ermm: Any ideas? THANKS AGAIN!! :)
P.S. Do you have a code for PhotoPost's VB Gallery? (i.e. ...gallery/showgallery.php?ppuser=173&cat=500)Make sure you enter the correct profile field #'s in the right spote. I believe there is 3 spots per field. That is most likely the problem. If you have any further problem with that part, get with me on AIM (deadkille) and Ill have you set me up with admin access to fix it.
I have the VBgallery code somewhere on my hard drive, ill look for it.
Blown Beauty
03-02-2006, 05:10 AM
Make sure you enter the correct profile field #'s in the right spote. I believe there is 3 spots per field. That is most likely the problem. If you have any further problem with that part, get with me on AIM (deadkille) and Ill have you set me up with admin access to fix it.
I have the VBgallery code somewhere on my hard drive, ill look for it.
I'll check them again. BTW, Y'all are GREAT! Thanks so much! It amazes me how y'all do this for free. If I can get it all set up I'd definitely want to donate somewhere! So far so good except those two little things. :) Very nice!
MissKalunji
03-02-2006, 05:11 AM
here u go
yayvb
03-02-2006, 06:03 AM
Holy crap looking great guys!! :) If any of you have seen the site in my sig, it has similar looking profiles that my users LOVE. I'm thinking about using this here however for my new custom vb modified dating site. :) Wow it'll be awesome.
yayvb
03-02-2006, 06:11 AM
html in profiles. I know vbulletin suggests against this, myspace for instance has very non-standard looking comment sections because people are always HTMLing their own images, etc. I believe. So if the html works fine for millions on myspace, would it break my site?
Brandon Sheley
03-02-2006, 06:21 AM
I would, but it would be rather lengthy whereas by using the [code] block in the 1st post, it has a scrollbar to condense it.
I have no problem making it, but it would be ugly due to the size. :(
it's okay,, i just say down to take a look at this and was expecting an install text file.. it's okay tho.. I understand why u want to use the post.. I'll live :p
thx for replying
did u see my other question ? can I install this hack without using that .htaccess file ?
@Stangsta - I can't help thinking how cool it would be if this mod integrated with ebux - in other words, new user gets standard vb profile, but can buy all the enhancements shown in your mod one at a time through the estore.
interesting idea :surprised:
Stangsta
03-02-2006, 07:24 AM
it's okay,, i just say down to take a look at this and was expecting an install text file.. it's okay tho.. I understand why u want to use the post.. I'll live :p
thx for replying
did u see my other question ? can I install this hack without using that .htaccess file ?Yes, you can install it without using the .htaccess.
Just remove this line from the MEMBERINFO<div class="smallfont"><a href="$vboptions[bburl]/$userinfo[username]">$vboptions[bburl]/$userinfo[username]</a></td></div></tr>
bushka
03-02-2006, 07:36 AM
Sorry to keep bugging you Stangsta but could you give is it possible for you to give me your list of profile fields... i.e field35 = sexual preference.... That kinda thing :)
It would just help me understand your example, I haven't got to the point of modding my MEMBERINFO yet and want ot be prepared when I get there...
Stangsta
03-02-2006, 08:09 AM
Sorry to keep bugging you Stangsta but could you give is it possible for you to give me your list of profile fields... i.e field35 = sexual preference.... That kinda thing :)
It would just help me understand your example, I haven't got to the point of modding my MEMBERINFO yet and want ot be prepared when I get there...Ill work on that tomorrow.
Stangsta
03-02-2006, 08:11 AM
@Stangsta - I can't help thinking how cool it would be if this mod integrated with ebux - in other words, new user gets standard vb profile, but can buy all the enhancements shown in your mod one at a time through the estore.Addon released! You can make it work the way you want with this, but it will take patience and time working with the memberinfo.
https://vborg.vbsupport.ru/showthread.php?t=109279
bushka
03-02-2006, 08:47 AM
Ill work on that tomorrow.
Thanks, I look forward to it :nervous:
zell_11
03-02-2006, 09:33 AM
Can you tell me what gallery system you use as you have not posted a link for it in the mod list. Also i possible a link to it
Thanks
caliman
03-02-2006, 01:08 PM
Addon released! You can make it work the way you want with this, but it will take patience and time working with the memberinfo.
https://vborg.vbsupport.ru/showthread.php?t=109279
Holy smokes! :ninja: I didn't expect that kind of response overnight! Thanks a lot! That's incredible!!!
iChambers
03-02-2006, 01:22 PM
I am thinking of installing this and just wondering how it works with the SEO Hacks like vBSEO? Do we just add what you have in the .htaccess to the current .htaccess to make it work?
MissKalunji
03-02-2006, 01:30 PM
I am thinking of installing this and just wondering how it works with the SEO Hacks like vBSEO? Do we just add what you have in the .htaccess to the current .htaccess to make it work?
no vbse does all that for you already...
www.domain.com/forum/username.html
iChambers
03-02-2006, 02:15 PM
So there is no need to upload the .htaccess if you are running vBSEO? If that is true I will definetly install this maybe tonight when I get back home instead of this weekend. I believe this is one of the best hack ideas now if I can get kayako eSupport Intergrated into vB and a good auction system then I will be far happy.
iChambers
03-02-2006, 02:22 PM
Here are some suggestions maybe can be looked at (not sure if these have been brought up but anyways) - intergrations of their favaorite or most played arcade game both ibproarcade and v3arcade; vbagallery (photopost) my images, favorite etc same with vbalinks I am not sure if these are possibles but maybe I can contact them and they can provide me the information that you can add to it.
Also how about the RPG Systems intergrations? This is just me throwing out ideas that would help me.
MissKalunji
03-02-2006, 02:39 PM
So there is no need to upload the .htaccess if you are running vBSEO? If that is true I will definetly install this maybe tonight when I get back home instead of this weekend. I believe this is one of the best hack ideas now if I can get kayako eSupport Intergrated into vB and a good auction system then I will be far happy.
No need dear:)
MissKalunji
03-02-2006, 02:40 PM
Here are some suggestions maybe can be looked at (not sure if these have been brought up but anyways) - intergrations of their favaorite or most played arcade game both ibproarcade and v3arcade; vbagallery (photopost) my images, favorite etc same with vbalinks I am not sure if these are possibles but maybe I can contact them and they can provide me the information that you can add to it.
Also how about the RPG Systems intergrations? This is just me throwing out ideas that would help me.
vgallery and photopost are integrated
what about rpg? what do you mean? having your character info showing there?
v3arcade also is already integrated
iChambers
03-02-2006, 03:04 PM
As far as the RPG (the VB RPG Hacks) goes just the user stats level, hp, mp, clan, etc.
Here is another idea that would be cool hack - not sure if it can be done. PodCast Hack which in podcast you would upload music and xml to your site music is usally mp3 and movies are quicktime. Now take that xml file and generate a page within vB so anyone can listen to it without iTunes but without destorying the XML for iTunes. Maybe a content manager reads that xml file and generates the site with listen or view buttons so you can play it. But all the podcaster has to do is update the podcast show and xml and the vB hack would automaticly update. This would be a cool idea I would use at a later date if available it would be standalone. But could possible also introduce it into this myspace rewrite hack. What do you all think of this one?
Maybe a possible works another way where you give members the ability to put the music and quicktime video and it makes the xml file for podcast. So they basicly upload their music and some backend thing makes the xml file and make like a universal podcast with multiple channels for each member or just one master podcast with all members.
Kusadasi-Guy
03-02-2006, 03:48 PM
one of the best hack!!!!!!!
i consider it as hack of the year ;)
iChambers
03-02-2006, 05:01 PM
Is this hack able to be set by usergroups like allowing certain things per usergroup? So maybe you can provide users you makes a x amount a post can get access to this feature or like I do beta testers group to test it before release to the public those are just examples.
Stangsta
03-02-2006, 05:49 PM
Is this hack able to be set by usergroups like allowing certain things per usergroup? So maybe you can provide users you makes a x amount a post can get access to this feature or like I do beta testers group to test it before release to the public those are just examples.You need to click install.
Addon released! You can make it work the way you want with this, but it will take patience and time working with the memberinfo.
https://vborg.vbsupport.ru/showthread.php?t=109279
iChambers
03-02-2006, 05:53 PM
Why would I need to click install - I have not installed yet I am installing all the other plugins that are required. This one may get up by tonight but I may just wait until Sunday when I am off. I was just asking some simple questions before as well as maybe see what else is in the pipeline for it. I will click install when I install it and working perfectly for what I would like to see.
Stangsta
03-02-2006, 06:21 PM
Sorry to keep bugging you Stangsta but could you give is it possible for you to give me your list of profile fields... i.e field35 = sexual preference.... That kinda thing :)
It would just help me understand your example, I haven't got to the point of modding my MEMBERINFO yet and want ot be prepared when I get there...I updated the hack.
yinyang
03-02-2006, 06:52 PM
stangsta, this mod rocks. i would like to offer the following suggestion that may be a win-win not only for you, but for the other coders that you incorporate into this mod.
would it be possible to put together one XML product import that covers all the other hacks you would need? I'm sure the other coders wouldn't mind as long as proper credit is given during the import. this would sort of be more like all-in-one type of file upload and xml import, and then do your customized template mods.
anyhow, this is a suggestion and i don't see how it wouldn't benefit everyone, including your users.
great stuff!
Stangsta
03-02-2006, 07:06 PM
stangsta, this mod rocks. i would like to offer the following suggestion that may be a win-win not only for you, but for the other coders that you incorporate into this mod.
would it be possible to put together one XML product import that covers all the other hacks you would need? I'm sure the other coders wouldn't mind as long as proper credit is given during the import. this would sort of be more like all-in-one type of file upload and xml import, and then do your customized template mods.
anyhow, this is a suggestion and i don't see how it wouldn't benefit everyone, including your users.
great stuff!That is an excellent suggestion, but it would require more time to do than I care to put in. Also, not everyone wants to use all the hacks listed not to mention, with multiple hacks, that means multiple upgrades when they update the hack. Thats almost a full time job :)
yinyang
03-02-2006, 07:23 PM
That is an excellent suggestion, but it would require more time to do than I care to put in. Also, not everyone wants to use all the hacks listed not to mention, with multiple hacks, that means multiple upgrades when they update the hack. Thats almost a full time job :)
true! i never thought about that... doh! :ninja:
GamerJunk.net
03-02-2006, 07:44 PM
Mine still looks messed up.
http://www.gamerjunk.net/forum/members/mike.html
Stangsta
03-02-2006, 07:49 PM
Mine still looks messed up.
http://www.gamerjunk.net/forum/members/mike.html
Looks to me like it is the gradient you are using. Have you tried it on a different style? One that does not use the same gradient.
hbalagh1
03-02-2006, 09:43 PM
awesome work :) i added it
shown here
http://www.mommieforums.com/hbalagh
bushka
03-02-2006, 09:45 PM
I updated the hack.
Big thanks mate :ninja:
I'll link in my page when I've finished...
foreverdarkness
03-03-2006, 12:21 AM
Looks nice!
You know, there has been one thing bugging me that maybe you can answer. On the Buddies, mine just stretches the images to a pre determined size rather than leaving them the size they were. Any ideas?
I have mine set up so it does not resize any of the avatars...if you are using the buddies list...its in the vbulletin options under buddies list. In there you will find the options you are looking for.
Stangsta
03-03-2006, 01:42 AM
I have mine set up so it does not resize any of the avatars...if you are using the buddies list...its in the vbulletin options under buddies list. In there you will find the options you are looking for.Which one are you using? VBFriends, VBuddies. Friends and/or buddies...theres so many...heh.
cerebro
03-03-2006, 12:21 PM
wow nice work...ill check the progress...maybe new version dont use to much extra hacks
Injektilo
03-03-2006, 05:55 PM
Does anyone knows how to display a counter of how many images the user has in the photopost gallery?
i've tried $post[imagecount] but didnt work... any more experienced users with some ideas on this? :)
Stangsta
03-03-2006, 06:12 PM
Does anyone knows how to display a counter of how many images the user has in the photopost gallery?
i've tried $post[imagecount] but didnt work... any more experienced users with some ideas on this? :)I have it in mine.....
https://vborg.vbsupport.ru/showthread.php?t=100667&highlight=gallery
Injektilo
03-03-2006, 06:21 PM
I have it in mine.....
https://vborg.vbsupport.ru/showthread.php?t=100667&highlight=gallery
thanks mate :)
foreverdarkness
03-03-2006, 07:34 PM
Which one are you using? VBFriends, VBuddies. Friends and/or buddies...theres so many...heh.
I have both set up but i am only using the VBuddies. I find it more flexable with the look i want for my profiles.
PixelFx
03-03-2006, 08:38 PM
This is my profile, although I'm not using the template hack from here. Figoured you guys may like a gander. I like what ya are doing though, keep up the good work.
Demo: (work in progress)
http://www.pixelfx.ca/forum/member.php?u=1
Brandon Sheley
03-04-2006, 03:25 AM
I'm about to start on this guys, wish me luck :D
CSS59
03-04-2006, 03:45 AM
i may give it a shot, but it looks like a lot of work :)
Brandon Sheley
03-04-2006, 06:56 AM
it really isn't to much work :)
but then agian I have a little issue here..lol
I used the member info code in the first post, changed the field# to match mine, and I have a section that is floting up in the wrong spot..
any ideas ? maybe something to do with the portal blocks that show ?
http://locoforum.com/forums/member-brandon.html
plus my video plays w/e i look at the profile.. how can i make it not start right away ?
thx :) this is a good start for me tonight..
hiiped
03-04-2006, 07:02 AM
i may give it a shot, but it looks like a lot of work :)
be prepared
Time to install using everything provided: 1 hour
Time to install minimally: 15 minutes
hiiped
03-04-2006, 07:05 AM
plus my video plays w/e i look at the profile.. how can i make it not start right away ?
somewhere in your videocode you have autostart="true" ?
if so change the true to "false"
Brandon Sheley
03-04-2006, 07:57 AM
somewhere in your videocode you have autostart="true" ?
if so change the true to "false"
I belive this is the code that is doing the video
<if condition="$userinfo[field19]">
<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[field19]"></div></td>
</tr>
</table>
</if>
i don't see what you discribed ?
anyone know ho wI can fix this floting block that i have ? do u think it's releated to the portal ?
Vizionz
03-04-2006, 06:10 PM
anyone get it so you can add html or bbcode to the userfields ?
MissKalunji
03-04-2006, 06:21 PM
anyone get it so you can add html or bbcode to the userfields ?
look in the first thread you have to add a pluging in member_complete
Vizionz
03-04-2006, 06:45 PM
okay thanks
Brandon Sheley
03-05-2006, 12:48 AM
is there a better video code that I can use ? that wont start the video w/e page is viewed ?.. t.y. :)
Stangsta
03-05-2006, 01:30 AM
is there a better video code that I can use ? that wont start the video w/e page is viewed ?.. t.y. :)<if condition="$userinfo[fieldXX]">
<td width="100%" valign="top" class="alt1"><EMBED SRC="$userinfo[fieldXX]" autostart="false" ShowControls="true" loop="true" height="240" width="320" align="center" height="128">
</td>
</if>
Don't forget to change the field #'s.
Brandon Sheley
03-05-2006, 01:55 AM
thank you stangsta, works perfect.. now I'm talking with the portal ppl, to see how I can remove my blocks, then i can get back to the profile as a whole :D
can u do one thing ?
can u post what these images should be ?
like
<img border="0" src="http://www.sevencityforums.com/foru...mns/addbudy.jpg" width="79" align="left" height="22"></a></p>
i don't know what this path is /foru...mns/addbudy
thank you, great work here :)
Stangsta
03-05-2006, 03:16 AM
thank you stangsta, works perfect.. now I'm talking with the portal ppl, to see how I can remove my blocks, then i can get back to the profile as a whole :D
can u do one thing ?
can u post what these images should be ?
like
<img border="0" src="http://www.sevencityforums.com/foru...mns/addbudy.jpg" width="79" align="left" height="22"></a></p>
i don't know what this path is /foru...mns/addbudy
thank you, great work here :)here u go.
Injektilo
03-05-2006, 03:32 AM
i want to ask something...
<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="http://test.forum.com/images/noprofpic.gif" $userinfo[profilepicsize] alt="$userinfo[username]" border="0" style="border:1px solid $stylevar[tborder_bgcolor]" />
</if>
isn't this correct? or am i doing something wrong here?
Brandon Sheley
03-05-2006, 04:49 AM
okay, I've removed the blocks from the profile page..
now I'm still having this floating block.. but when i add css stuff it is fixed..
the thing is, not a lot of my member will add there own css style, do u know why it would be throwing things off ?
here is an example
http://locoforum.com/forums/member-brandon.html
mine with css..and the location, last online stuff is int he correct spot..
then
http://locoforum.com/forums/member-brokenangel-s-baby-girl.html
the location, last online stuff if in the wrong spot..
any ideas ? thank you
oh and thx for the images :squareeyed:after looking, I think found the area it has to be..
is this code correct ?
<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">
<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.locoforum.com/forums/images/misc/noavatar.gif">
</if></div><br /></center>
<strong><div align="center"><a href="/gallery/browseimages.php?do=member&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[field17] <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>
Smiry Kin's
03-05-2006, 05:26 AM
Has anyone foun out how to add . ! etc etc?
Stangsta
03-05-2006, 05:30 AM
i want to ask something...
<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="http://test.forum.com/images/noprofpic.gif" $userinfo[profilepicsize] alt="$userinfo[username]" border="0" style="border:1px solid $stylevar[tborder_bgcolor]" />
</if>
isn't this correct? or am i doing something wrong here?The <if> statement is correct, but what are you trying to accomplish, using a profile pic instead of the avatar?
Stangsta
03-05-2006, 05:30 AM
Has anyone foun out how to add . ! etc etc?huh?
Stangsta
03-05-2006, 05:40 AM
okay, I've removed the blocks from the profile page..
now I'm still having this floating block.. but when i add css stuff it is fixed..
the thing is, not a lot of my member will add there own css style, do u know why it would be throwing things off ?
here is an example
http://locoforum.com/forums/member-brandon.html
mine with css..and the location, last online stuff is int he correct spot..
then
http://locoforum.com/forums/member-brokenangel-s-baby-girl.html
the location, last online stuff if in the wrong spot..
any ideas ? thank you
oh and thx for the images :squareeyed:after looking, I think found the area it has to be..
is this code correct ?
<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">
<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.locoforum.com/forums/images/misc/noavatar.gif">
</if></div><br /></center>
<strong><div align="center"><a href="/gallery/browseimages.php?do=member&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[field17] <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>It looks correct to me.
I would try disabling products and see if maybe one is conflicting. I know this works, I cant tell you how many forums it is on. Personally, I think a hack is conflicting somewhere, and its not in the MEMBERINFO.
Smiry Kin's
03-05-2006, 05:40 AM
huh?
well you cant have ! or .'s or anything else in username, im sure its something to do with that little a-z-A-Z thingy..? o.0
Injektilo
03-05-2006, 05:46 AM
The <if> statement is correct, but what are you trying to accomplish, using a profile pic instead of the avatar?
trying to show a default profile picture when a user dont have one.. is this possible?
Brandon Sheley
03-05-2006, 05:56 AM
It looks correct to me.
I would try disabling products and see if maybe one is conflicting. I know this works, I cant tell you how many forums it is on. Personally, I think a hack is conflicting somewhere, and its not in the MEMBERINFO.
okay thank you, I'll look around
*hmm, I've looked around and I don't really see anything that would knock things off, for now I've set my template as it originally was and will have a look again tomorrow.. u can look and see if you notice anything that would.
Stangsta
03-05-2006, 06:15 AM
well you cant have ! or .'s or anything else in username, im sure its something to do with that little a-z-A-Z thingy..? o.0Only for the URL rewrite. Seems you are correct. Ill see if I can dig up anything on that problem.
Stangsta
03-05-2006, 06:17 AM
trying to show a default profile picture when a user dont have one.. is this possible?Yes, it is possible, and what you have looks correct, I cant verify though, I have profile pics disabled. I use avatars as the profile pic.
Stangsta
03-05-2006, 06:18 AM
okay thank you, I'll look around
*hmm, I've looked around and I don't really see anything that would knock things off, for now I've set my template as it originally was and will have a look again tomorrow.. u can look and see if you notice anything that would.If you use a "test" style, and you only copy the memberinfo over, does it show up correctly?
MissKalunji
03-05-2006, 12:45 PM
i dont see what you're talking about....
mello_mike
03-05-2006, 11:53 PM
I've tried adding the hook so that users can use HTML .... but whenever HTML is entered into the fields I defined.. it just shows the HTML code.
Stangsta
03-06-2006, 12:15 AM
I've tried adding the hook so that users can use HTML .... but whenever HTML is entered into the fields I defined.. it just shows the HTML code.The plugin is for BBCODE, not HTML.
djjeffa
03-06-2006, 12:59 AM
Im sure it was asked but i cant find it.
how do we use the profile pic instead of the avator as the main pic?
also how do we set up a defaut pic so i stop getting red x's for members without a pic?
Stangsta
03-06-2006, 01:21 AM
Im sure it was asked but i cant find it.
how do we use the profile pic instead of the avator as the main pic?
also how do we set up a defaut pic so i stop getting red x's for members without a pic?replace ><if condition="$show['avatar']">
<div class="smallfont">
<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/foru...le/nopropic.jpg (http://www.sevencityforums.com/forums/images/newstyle/nopropic.jpg)">
</if></ With This<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="http://test.forum.com/images/noprofpic.gif" $userinfo[profilepicsize] alt="$userinfo[username]" border="0" style="border:1px solid $stylevar[tborder_bgcolor]" />
</if> and maybe try installing this
https://vborg.vbsupport.ru/showthread.php?t=95956&highlight=default+profile
Brandon Sheley
03-06-2006, 04:27 AM
If you use a "test" style, and you only copy the memberinfo over, does it show up correctly?
I'll have to check this out,, but it looks like this project for me is put in the back burners this week,, I'll give her a try again next weekend
i dont see what you're talking about....
I set it back to default last night, I'll work on this again next free time I have
ronoxQ
03-06-2006, 09:24 PM
I don't think it's working, far as I know. There've been a whole load o' problems coming up with it recently.
KevNJ
03-06-2006, 10:27 PM
whats needed for someone to have multiple profile pictures and to host them on my server for the members just how myspace does.
ronoxQ
03-06-2006, 11:06 PM
Hmm... I used the default idea you gave, with a few changes to fit my profile fields, but some things are AWOL.
Look: www.omegaseye.com/forum/oadmin
Code for my profile: $stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<if condition="$userinfo[field28]">
<style type="text/css">$userinfo[field28]</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">
<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.omegaseye.com/foru...le/nopropic.jpg">
</if></div><br /></center>
<strong><div align="center"><a href="/gallery/browseimages.php?do=member&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[field15] <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&u=$userinfo[userid]"><">
<img border="0" src="http://www.omegaseye.com/foru..._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&u=$userinfo[userid]" rel="nofollow">
<img border="0" src="http://www.omegaseye.com/foru...ndmailicon2.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&userlist=buddy&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru...ns/addbuddy.gif" width="79" height="22"></a>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru..._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&userlist=ignore&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru...c_mns/block.jpg" width="79" height="22" align="left"></a></p>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru...mns/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&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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[field9]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Movies:</strong></span></td>
<td align="left" valign="top">$userinfo[field10]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Television:</strong></span></td>
<td align="left" valign="top">$userinfo[field14]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Heroes:</strong></span></td>
<td align="left" valign="top">$userinfo[field13]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Books:</strong></span></td>
<td align="left" valign="top">$userinfo[field12]</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['field26']&1">
$comma Dating
<if condition="$comma =','"></if>
</if>
<if condition="$post['field26']&2">
$comma Serious Relationships
<if condition="$comma =','"></if>
</if>
<if condition="$post['field26']&4">
$comma Friends
<if condition="$comma =','"></if>
</if>
<if condition="$post['field26']&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[field20]</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[field21]</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[field22] / $userinfo[field24]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Children:</strong></span></div></td>
<td style="">$userinfo[field27]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Education</strong></span></div></td>
<td style="">$userinfo[field25]</td>
</tr>
</table></td>
<p>
<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[field7]</td>
</tr>
<tr>
<td class="alt2"><strong>Who I'd Like to Meet:</strong><br />
$userinfo[field11]</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&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>
What am I doing wrong?
djjeffa
03-06-2006, 11:50 PM
replace ><if condition="$show['avatar']">
<div class="smallfont">
<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/foru...le/nopropic.jpg (http://www.sevencityforums.com/forums/images/newstyle/nopropic.jpg)">
</if></ With This<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="http://test.forum.com/images/noprofpic.gif" $userinfo[profilepicsize] alt="$userinfo[username]" border="0" style="border:1px solid $stylevar[tborder_bgcolor]" />
</if> and maybe try installing this
https://vborg.vbsupport.ru/showthread.php?t=95956&highlight=default+profile
Thank you verey much :rolleyes:
Stangsta
03-07-2006, 12:00 AM
Hmm... I used the default idea you gave, with a few changes to fit my profile fields, but some things are AWOL.
Look: www.omegaseye.com/forum/oadmin (http://www.omegaseye.com/forum/oadmin)
Code for my profile: $stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<if condition="$userinfo[field28]">
<style type="text/css">$userinfo[field28]</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">
<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.omegaseye.com/foru...le/nopropic.jpg">
</if></div><br /></center>
<strong><div align="center"><a href="/gallery/browseimages.php?do=member&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[field15] <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&u=$userinfo[userid]"><">
<img border="0" src="http://www.omegaseye.com/foru..._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&u=$userinfo[userid]" rel="nofollow">
<img border="0" src="http://www.omegaseye.com/foru...ndmailicon2.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&userlist=buddy&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru...ns/addbuddy.gif" width="79" height="22"></a>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=buddy&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru..._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&userlist=ignore&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru...c_mns/block.jpg" width="79" height="22" align="left"></a></p>
<else /><div class="smallfont"><a href="profile.php?$session[sessionurl]do=removelist&userlist=ignore&u=$userinfo[userid]">
<img border="0" src="http://www.omegaseye.com/foru...mns/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&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&showposts=0&starteronly=1&exactname=1&s earchuser=$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[field9]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Movies:</strong></span></td>
<td align="left" valign="top">$userinfo[field10]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Television:</strong></span></td>
<td align="left" valign="top">$userinfo[field14]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Heroes:</strong></span></td>
<td align="left" valign="top">$userinfo[field13]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"><span class=""><strong>Books:</strong></span></td>
<td align="left" valign="top">$userinfo[field12]</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['field26']&1">
$comma Dating
<if condition="$comma =','"></if>
</if>
<if condition="$post['field26']&2">
$comma Serious Relationships
<if condition="$comma =','"></if>
</if>
<if condition="$post['field26']&4">
$comma Friends
<if condition="$comma =','"></if>
</if>
<if condition="$post['field26']&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[field20]</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[field21]</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[field22] / $userinfo[field24]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Children:</strong></span></div></td>
<td style="">$userinfo[field27]</td>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="left"><span class=""><strong>Education</strong></span></div></td>
<td style="">$userinfo[field25]</td>
</tr>
</table></td>
<p>
<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[field7]</td>
</tr>
<tr>
<td class="alt2"><strong>Who I'd Like to Meet:</strong><br />
$userinfo[field11]</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&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>
What am I doing wrong?Its your skin, like the problem you had with your footer before using one of of my other hacks. ITS YOUR SKIN! Resize the tables and you will be fine.
Stangsta
03-07-2006, 12:02 AM
whats needed for someone to have multiple profile pictures and to host them on my server for the members just how myspace does.https://vborg.vbsupport.ru/showthread.php?p=875946#post875946
KevNJ
03-07-2006, 01:00 AM
https://vborg.vbsupport.ru/showthread.php?p=875946#post875946
There isnt an option to click "view more pictures" and then it opens a new page with X amount of pictures allowed through permissions ?
MissKalunji
03-07-2006, 01:45 AM
create it :P to bring it to the gallery
ZacUSNYR
03-07-2006, 02:57 AM
Great work to the people who have contributed to this.
I don't know if this was mentioned in the thread at all.
I've been working on cleaning up the code. One thing I noticed is the profile field you use for changing CSS. It's being declared with an if/else statement. So if all fields are not defined the page goes to whack.
If you declare style within a page after an external style - the last style defined takes over.
I changed the first part of the code to.
$headinclude
<!-- Declare style from profile field -->
<if condition="$userinfo[field35]">
<style type="text/css">$userinfo[field35]</style>
</if>
works great for changing a couple little things (body, page, etc etc)
MissKalunji
03-07-2006, 03:08 AM
or u can just "not use" if :p
ZacUSNYR
03-07-2006, 03:39 AM
or u can just "not use" if :p
True :)
Brandon Sheley
03-07-2006, 04:46 AM
Great work to the people who have contributed to this.
I don't know if this was mentioned in the thread at all.
I've been working on cleaning up the code. One thing I noticed is the profile field you use for changing CSS. It's being declared with an if/else statement. So if all fields are not defined the page goes to whack.
If you declare style within a page after an external style - the last style defined takes over.
I changed the first part of the code to.
$headinclude
<!-- Declare style from profile field -->
<if condition="$userinfo[field35]">
<style type="text/css">$userinfo[field35]</style>
</if>
works great for changing a couple little things (body, page, etc etc)
ah, very helpful.. I'll use this part w/e i get my site back up
ronoxQ
03-07-2006, 06:26 PM
Its your skin, like the problem you had with your footer before using one of of my other hacks. ITS YOUR SKIN! Resize the tables and you will be fine.
Heh, why do I always pick the most annoying skins? :p
But not, I wasn't talking about that. Some of my images disappeared, like the buddy and ignore ones. Is that just because I HAVE no images or did I mess something up?
I'm a famously poor modder, so it's probably me. ^_^
Blown Beauty
03-07-2006, 06:37 PM
I just wanted to say THANKS again to you two for putting together one HELLUVA great script!!
The two minor issues I did have I figured out/fixed in about an hour (just needed to get some sleep before thinking TOO hard). ;) Otherwise it's working beautifully and my members LOVE it!
I'm off to begin mastering the CSS side of it. I was pretty nervous upon installing this - but I look forward to any updates/additions y'all decide to throw in down the road!
DEFINITELY my choice for best one of the year!! :cool:
SIINSI
03-07-2006, 07:06 PM
Any way to get regular Photopost photos to show instead of vbgallery photos? Aweosme mod, love it!
Stangsta
03-07-2006, 07:19 PM
Heh, why do I always pick the most annoying skins? :p
But not, I wasn't talking about that. Some of my images disappeared, like the buddy and ignore ones. Is that just because I HAVE no images or did I mess something up?
I'm a famously poor modder, so it's probably me. ^_^There are settings for your buddy/ignore in the Vbulletin options portion of your admincp.
vbreal
03-07-2006, 08:09 PM
cool
caliman
03-07-2006, 09:45 PM
Any way to get regular Photopost photos to show instead of vbgallery photos? Aweosme mod, love it!
I'd like to know this too.
vbreal
03-07-2006, 10:11 PM
I'd like to know this too.
i was able to get the photopost verison to show. but i haven't been able to get it to show the number of pics next to view more pics. but i can link it to the pics of the user.
replace
browseimages.php?do=member&imageuser
with
showgallery.php?do=member&ppuser
ppuser may be something different for you. depends on what u made your table prefix for photopost gallery.
i am just a beginner don't know if there was a better more efficient way to do it ha
i am hoping someone figures out how to get the number of pics to show. i am going to continue to mess around and see if i can figure it out. i can't figure out which table holds the value for the total number of pics.
djjeffa
03-08-2006, 12:59 AM
some times it shoes the media player but other times it just shows a grey square but il always plays the music.
any ideals why?
vbreal
03-08-2006, 04:01 AM
some times it shoes the media player but other times it just shows a grey square but il always plays the music.
any ideals why?
i can't play a video at all. i used the same code i use on myspace but its not working. can someone show me an example of the code they use
Stangsta
03-08-2006, 05:00 AM
i can't play a video at all. i used the same code i use on myspace but its not working. can someone show me an example of the code they useTo play a video, ONLY use a URL, not all the extra junk.
ex. http://www.videosite.com/video/videoname.mpg
That is all you put in the profile field. You can remove everything else in the "video code"
Smiry Kin's
03-08-2006, 06:01 PM
well you cant have ! or .'s or anything else in username, im sure its something to do with that little a-z-A-Z thingy..? o.0
any news on this???
Brandon Sheley
03-08-2006, 07:12 PM
well I'm about to give this another try, I've basically reset my site with a fresh style. I really want and think I can get this looking nice.. wish me luck :p
Annie^.^
03-08-2006, 07:14 PM
I like the idea of this
www.mysite.com/forum/username
I have a question my forum is located in the main dir not /forum
is there a possiblity to make the profile page like this
username.mysite.com
Mr Chad
03-08-2006, 08:17 PM
I like the idea of this
www.mysite.com/forum/username
I have a question my forum is located in the main dir not /forum
is there a possiblity to make the profile page like this
username.mysite.com
I would think you can use the url rewrite or sumthin for that?
dunno if you can make a .htaccess file pull things from the database tho.
Annie^.^
03-08-2006, 08:24 PM
I don't know much about coding LOL but if someone would know how would be awesome
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.