The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Welcome Panel Hack V1.1 [vB3.0.x] Details »» | |||||||||||||||||||||||||
Version 1.1 Hack Author: Name: SmasherMaster E-Mail: webmaster@megareviews.com Forums: http://www.megareviews.com/forums Description: This hack replaces the box on top of the postbit in the index page with a snazzy panel with stats, new posts and PMs. When you go to view a different page, the box on top of the navbar changes into the default navigation/breadcrumb box. Changelog: V1.1 |-Changed file edit to global.php for tidier code. | |-Added file and new template edits for VbAdvanced CMPS so the welcome panel will work on CMPS. V1.0 |-Welcome Panel Hack RELEASED! Installation Time: 5 min. Zip Contents: Welcome_Panel_Hack.zip |-instructions.txt -- Instructions on how to install this hack. |-noavatar.gif -- Image for members who don't have an avatar yet. |-guestavatar.gif -- Image for guests. |-Welcome_Panel_Guest.jpg -- What the panel will look like to a guest |-Welcome_Panel_loggedin.jpg -- What the panel will look like to a member with an avatar |-Welcome_Panel_loggedin_noav.jpg -- What the panel will look like to a member without an avatar Testing: Tested on vBulletin 3.0.3 Files to Modify: forumroot/global.php Templates to Modify: forumhome (Optional) navbar Images to Upload: noavatar.gif guestavatar.gif Notes: If you use this hack, please click on the INSTALL button. You will be notifited via email about any updates or changes. My first hack made, and thanks to Zero Tolerance for the Welcome Panel hack inspiration. Show Your Support
|
Comments |
#132
|
|||
|
|||
None of the avatar fixes in this thread are working for me. I think it may have something to with the fact that I'm using 3.0.7 ????? Does anyone have it working with 3.0.7?
|
#133
|
|||
|
|||
I just installed to version 3.0.6, and its working fine except . . . Their are no numbers next to new threads and new posts. Any ideas why not?
|
#134
|
|||
|
|||
What what the navbar code look like if I wanted the avatar in the middle table?
|
#135
|
|||
|
|||
have you guys added the image of the default avatar to the correct folder??
|
#136
|
|||
|
|||
I got it to work, But the display is messed up. I get this:
http://img204.echo.cx/img204/7540/igetthis9vp.jpg |
#137
|
|||
|
|||
Code:
<!-- Welcome Panel Hack V1.1 [] Created By SmasherMaster --> <if condition="THIS_SCRIPT == 'index'"> <table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center"> <tr> <!-- Main Welcome Panel Block [] Begin --> <td class="alt2" valign="middle" align="center"> <if condition="$bbuserinfo[userid]!=0"> <!-- Avatar Cell [] Begin --> {$welcome_avatar} </td> <!-- Avatar Cell [] End --> <td class="alt2" nowrap="nowrap" style="padding:3px"> <!-- Your Stats [] Begin --> <div class="smallfont"><strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br /> <phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase> <a href="search.php?{$session['sessionurl']}do=getnew"><br />$vbphrase[new_posts]</a>: {$welcome_new_posts['new_posts']} $vbphrase[new_threads]: {$welcome_new_topics['new_topics']} <if condition="$show['pmstats']"><br /><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase></if><br /> <!-- Your Stats [] End --> <else /> <!-- Guest [] Begin --> <!-- Avatar --> <td class="alt2" valign="middle" align="center"> <a href="register.php?ID=&"><img src="images/avatars/guestavatar.gif" border="0"></a> </td> <!-- / Avatar --> <td class="alt2" nowrap="nowrap" style="padding:0px"> <!-- login form --> <form action="login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password,vb_login_md5password_utf)"> <script type="text/javascript" src="clientscript/vbulletin_md5.js"></script> <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0"> <tr> <td class="smallfont">$vbphrase[username]</td> <td><input type="text" class="button" name="vb_login_username" id="navbar_username" size="16" accesskey="u" tabindex="1" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td> <td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />$vbphrase[remember_me]</label></td> </tr> <tr> <td class="smallfont">$vbphrase[password]</td> <td><input type="password" class="button" name="vb_login_password" size="16" accesskey="p" tabindex="2" /></td> <td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="4" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td> </tr> <tr> </table> <input type="hidden" name="ID" value="" /> <input type="hidden" name="s" value="" /> <input type="hidden" name="do" value="login" /> <input type="hidden" name="forceredirect" value="1" /> <input type="hidden" name="vb_login_md5password" /> </form> </td> <!-- / login form --> <!-- Guest [] End --></if> </td> <td class="alt2" nowrap="nowrap" style="padding:3px"> <!-- Forum Stats [] Begin --> <div class='smallfont'><phrase 1="$vboptions[bbtitle]"><b>$vbphrase[x_statistics]</b></phrase></div> <div class='smallfont'>$vbphrase[threads]: $totalthreads, $vbphrase[posts]: $totalposts, $vbphrase[members]: $numbermembers</div> <div class='smallfont'><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div> <div class='smallfont'><a href="online.php?$session[sessionurl]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)</div> </td> <!-- Forum Stats [] End --> <!-- Main Welcome Panel Block [] End --> </tr> </table> <else /> <!-- / Welcome Panel Hack V1.1 [] Created By SmasherMaster --> I ask like is made to remove the line to six of the guest avatar? Thanks hello jancarlo ps: pardon... you must add this new phrase: "$vbphrase[new_threads]" |
#138
|
|||
|
|||
Overlooked but important!
The bottom vb stats have a " , " included to break large numbers example 1,258 or 78,524 etc... Please see attached images. Is there a fix for this with the welcome panel? Thanks |
#139
|
||||
|
||||
I HAVE RISEN FROM THE DEAD! Jeez, alot of new replies, for sure. A recent complaint brought to my attention over MSN, showed me that in this part:
Code:
Open Template 'NAVBAR' %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Find: +++++++++++++++++++++++++++++++++++++++++++++ <!-- breadcrumb, login, pm info --> +++++++++++++++++++++++++++++++++++++++++++++ Add BELOW: +++++++++++++++++++++++++++++++++++++++++++++ <!-- Welcome Panel Hack V1.1 [] Created By SmasherMaster --> <if condition="THIS_SCRIPT == 'index'"> Midnightz: Yes, do this change. Replace Code:
<div>$vbphrase[threads]: $totalthreads, $vbphrase[posts]: $totalposts, $vbphrase[members]: $numbermembers</div> Code:
<div>$vbphrase[threads]: $totalthreads $vbphrase[posts]: $totalposts $vbphrase[members]: $numbermembers</div> EDIT: I'm not sure about this, with me not using vB anymore and having a very outdated version, maybe 3.0.7 somehow screws up the hack, i'm not sure. |
#140
|
|||
|
|||
Quote:
That did not work for me as the commas are still not present and showing. another idea? Thnaks |
#141
|
||||
|
||||
Check the phrases $totalthreads and such and see if there are any commas present at the end of the phrases.
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|