Follow vBSEO on Twitter
vBulletin Modifications
  • Forums
  • Add-Ons
  • Template Modifications
  • Styles
  • Graphics
  • Tutorials
  • Support Center
  • Register
  • vBulletin SEO

Member Log In

Site Navigation

  • Register
  • Members List
  • Social Groups
  • Search
  • Today's Posts
  • Mark Forums Read

Latest Modifications

  • [vB 3.8.4] THX - Hack for VB. 3.8.4
    By: bluedog
  • [vB 3.8.4] Cyb - Chatbox V.2.3
    By: bluedog
  • [vB 4.0.x] PHPKD - Advanced Quick...
    By: PHPKD
  • [vB 3.6.x] StopSpam
    By: flappi282
  • [vB 3.8.x] vBulletin Chat Addon for...
    By: 123flashchat

Latest Template Mods

  • [vB 4.0.x] Remove My Profile Link...
    By: Ak Worm
  • [vB 3.8.x] Images DownloadBox...
    By: cRs!MP
  • [vB 3.8.x] Adviertise Mod On Forum...
    By: MG4
  • [vB 3.8.4] Images PassWordBox...
    By: cRs!MP
  • [vB 3.8.4] Footer Follow Ups
    By: Ak Worm

Latest Styles

  • [vB 4.0.x] 4.0.3 - VB4STYLE-TWEETA...
    By: Belon
  • [vB 4.0.x] [4.0.3] vbdesigns.de...
    By: Belon
  • [vB 3.8.4] CompletevB - Skylight
    By: DreadKnight
  • [vB 3.8.3] [vB 3.8.4] Barcelona...
    By: hoiquantinhoc.com
  • [vB 3.8.3] Natures Walk by vBSkin...
    By: Chri5

Latest Graphics

  • [vB ] [anim.]Team Ranks
    By: cRs!MP
  • [vB ] Abstract Circles (3...
    By: cRs!MP
  • [vB ] PlayStation Rank Images
    By: cRs!MP
  • [vB 3.6.12] Heavy Stroked Button...
    By: Shelley
  • [vB ] Minature Ranks.
    By: Shelley
vBulletin Modifications » vBulletin Modifications » vBulletin 3.7 / 3.8 Hack Releases » Profile Enhancements - Advanced Userbars Management System v2.0
Reply
Page 2 of 2 < 1 2

 

  • Thread Tools
Download Options
You Must Register First
To Download This Modification

Report A Bug
Bugs
Uncofirmed:
Advanced Userbars Management System v2.0 Post New Bug
Posted By: Kuefler
Submit A Bug | View All Bugs
  
Not Supported
[vB 3.7.0 Beta 5] Profile Enhancements - Advanced Userbars Management System v2.0 (88)
Released: 03-02-2008, 08:33 AM
Modification Information: Version: 2.0.0
Hasann's Avatar Author: Hasann
Last Online: 09-19-2009
Installer Included: 1 Additional queries added to database: 1 Template Edits: 3
File Edits: 4 New Files: 6 New Phrases: 55

Code Hack
ADVANCED USERBARS MANAGEMENT SYSTEM for vBulletin 3.7.x BY HASANN

The Legend Is Back :D:D

What does it?: This hacks allows you to upload, add, manage userbars in cats with usergroup permissions. And show your selected userbars in Memberinfo/Userinfo Profile and In Postbit Under Signature

Installation:
  1. ->Install product_userbars.xml
  2. ->Upload all files (userbar images, cpnav xml)
  3. ->CHMOD 777 ./images/userbars/
  4. ->rebuild bitfields
  5. ->set advanced userbars system options : vBulletin Options > Advanced Userbars System Options > All Yes Or You Decide And Save
  6. ->Do file edits
  7. ->Do template edits
  8. ->Show your support click "Mark As Installed", nominate for MOTM, rate this modification, and/or donate.

____________________________
FILE EDITS (4 edits in 1 file)

____________________________
OPEN admincp/image.php


(1)
FIND :
-----------
PHP Code:
case 'smilie':
    
$itemtype = 'smilie';
    
$itemtypeplural = 'smilies';
    
$catid = 3;
    break; 
----------
ADD BELOW:
----------
PHP Code:
case 'userbar':
    
$itemtype = 'userbar';
    
$itemtypeplural = 'userbars';
    
$catid = 4;
    break; 
----------

(2)
FIND:
----------
PHP Code:
$tables = array('avatar' => $vbphrase['avatar'], 'icon' => $vbphrase['post_icon'], 'smilie' => $vbphrase['smilie']); 
---------
REPLACE WITH:
----------
PHP Code:
$tables = array('avatar' => $vbphrase['avatar'], 'icon' => $vbphrase['post_icon'], 'smilie' => $vbphrase['smilie'], 'userbar' => $vbphrase['userbar']); 
----------

(3)
FIND:
----------
PHP Code:
'avatarid' => TYPE_INT,
'iconid'   => TYPE_INT,
'smilieid' => TYPE_INT, 
----------
ADD BELOW:
----------
PHP Code:
'userbarid' => TYPE_INT, 
----------

(4)
FIND:
----------
PHP Code:
if ($vbulletin->GPC['avatarid'])
{
    
$id = $vbulletin->GPC['avatarid'];
}
else if (
$vbulletin->GPC['iconid'])
{
    
$id = $vbulletin->GPC['iconid'];
}
else if (
$vbulletin->GPC['smilieid'])
{
    
$id = $vbulletin->GPC['smilieid'];
} 
----------
ADD BELOW:
----------
PHP Code:
else if ($vbulletin->GPC['userbarid'])
{
    
$id = $vbulletin->GPC['userbarid'];
} 
----------

Save & Close


_________________________
Template Edits (3)
_________________________


OPEN MEMBERINFO TEMPLATE



FIND:
------------------------------------------------------------

HTML Code:
<h1>$prepared[musername] $prepared[onlinestatus]</h1>
<if condition="$prepared['usertitle']">
<h2>$prepared[usertitle]</h2>
</if> 
------------------------------------------------------------


ADD UNDER:
-----------------------------------------------------------
HTML Code:
<if condition="$vbulletin->options[enable_advanced_userbars_system]">
<if condition="$userinfo[userbar]">
<div id="userbar"><b>$userbar[title]</b></div>
<div id="userbar"><img src="$userbar[userbarpath]" border="0"></div>
<br />
</if>
</if> 
-----------------------------------------------------------
Save & Close



OPEN USERCP_SHELL TEMPLATE AND FIND:
----------------------------------------------------------
HTML Code:
<tr><td class="thead">$vbphrase[networking]</td></tr> 
-----------------------------------------------------------



ADD ABOVE:
-----------------------------------------------------------
HTML Code:
 <if condition="$vbulletin->options['advanced_userbars_system_usercp_link']">
	<tr><td class="$navclass[selectuserbar]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=selectuserbar">$vbphrase[select_userbar_picture]</a></td></tr>
	</if> 
------------------------------------------------------------



OPEN postbit_legacy and postbit TEMPLATE THEN FIND:
----------------------------------------------------------
HTML Code:
$template_hook[postbit_signature_end]
-----------------------------------------------------------



ADD UNDER:
-----------------------------------------------------------
HTML Code:
<if condition="$vbulletin->options[enable_advanced_userbars_system]">
<br />		
<if condition="$post[userbar]">
<fieldset><legend>$post[username]-s Userbar:</legend><table><tr><td>
<b>$userbar[title]</b>
<img src="$userbar[userbarpath]" border="0">
</td></tr>
</table></fieldset>
</if>
<br />
</if> 
------------------------------------------------------------

Save & Close

Also You Can Find Userbars From Userbars | Forum Userbars | Userbar Collection | Download Userbars | Quality Userbars | Free User Bars
Enjoy & Don't forget to click install.



Screenshots
Screenshots
File Type: jpg advanced_userbars_system_options.jpg (72.6 KB, 551 views)
File Type: jpg advanced_userbars_system_admincp_userbars.jpg (71.7 KB, 595 views)
File Type: jpg advanced_userbars_system_usercp_userbar.jpg (90.3 KB, 500 views)
File Type: jpg advanced_userbars_system_memberinfo_userbar.JPG (367.7 KB, 567 views)
File Type: jpg advanced_userbars_system_postbit_legacy_userbar.JPG (250.3 KB, 574 views)



Old 07-04-2008, 02:07 AM   #11
shaggydaddy
vB Newbie

Activity Longevity
0/20 7/20
Today Posts
0/3 ssssssss2
shaggydaddy is on a distinguished road
Status: Offline Default
ummm, sorry for the noob ques, but, how do i rebuild bitfields?
Reply With Quote Installed
Old 07-06-2008, 08:06 PM   #12
honcho
vB Newbie

Activity Longevity
0/20 9/20
Today Posts
0/3 ssssssss8
honcho is on a distinguished road
Status: Offline Default
Quote:
Originally Posted by shaggydaddy View Post
ummm, sorry for the noob ques, but, how do i rebuild bitfields?
i also would like to know this neeb anah
Reply With Quote
Old 10-03-2008, 10:46 AM   #13
DJAlexxstyle
vB Newbie

Activity Longevity
0/20 6/20
Today Posts
0/3 ssssssss2
DJAlexxstyle is on a distinguished road
Status: Offline Default
Hey, how con i add or remove other userbars or the text under them?
EDIT:
Sorry, i've find!!!
RI-EDIT XD:
Can the creator of this hack make some categories for the usebars?
ES: category Games (in this category will be insert the userbars that speacks about games etc.......)
Sorry 4 my bad english, but I'm Italian ;P

Last edited by DJAlexxstyle; 10-03-2008 at 11:02 AM.
Reply With Quote Installed
Old 10-17-2008, 01:15 AM   #14
Chris Butler
vB Newbie

Activity Longevity
0/20 6/20
Today Posts
0/3 ssssssss3
Chris Butler is on a distinguished road
Status: Offline Default
Nice share.
Reply With Quote
Old 03-10-2009, 08:36 PM   #15
pnuker
vB Newbie

Activity Longevity
0/20 5/20
Today Posts
0/3 ssssssss1
pnuker is on a distinguished road
Status: Offline Default
Quote:
Originally Posted by shaggydaddy View Post
what do i do? i get this msg whenever i hit 'select an userbar'.
I get this same error. It looks like it conflicts with VBseo. Any fix for this?
Reply With Quote Installed
Old 03-15-2009, 07:51 PM   #16
belai123
vB Newbie

Activity Longevity
0/20 16/20
Today Posts
0/3 ssssssss2
belai123 is on a distinguished road
Status: Offline Default
To fix the error
just go into the "userbar" template and find this


Code:
<form method="post" action="profile.php">add under it this


Code:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
Reply With Quote Installed
Old 05-28-2009, 11:50 AM   #17
desi77
vB Newbie

Activity Longevity
0/20 4/20
Today Posts
0/3 ssssssss3
desi77 is on a distinguished road
Status: Offline Default
thanks a lot but nits givin error pls advise. thanks

Fatal error: Call to a member function on a non-object in /home/content/html/forums/includes/class_postbit.php(287) : eval()'d code on line 3

Last edited by desi77; 05-28-2009 at 12:55 PM.
Reply With Quote Installed
Old 06-26-2009, 12:05 AM   #18
PMK
vB Newbie

PMK's Avatar

Activity Longevity
0/20 5/20
Today Posts
0/3 ssssssss6
PMK is on a distinguished road
Status: Offline Default
Very Nice. Thanks For This One :P
Reply With Quote
Old 10-01-2009, 07:23 PM   #19
web77
vB Newbie

Activity Longevity
1/20 3/20
Today Posts
0/3 ssssssss8
web77 is on a distinguished road
Status: Offline Default
thanks this..........
Reply With Quote
Old 07-23-2010, 09:21 AM   #20
turkgucu21
vB Newbie

Activity Longevity
0/20 1/20
Today Posts
0/3 ssssssss1
turkgucu21 is on a distinguished road
Status: Offline Default
Thanks hasann
Teşekkürler hasan abi
Reply With Quote Installed

Reply
Page 2 of 2 < 1 2

« Forumhome Join Social Groups Link | Thread Starter Usergroups colour in Forumdisplay Highlighting »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Show Printable Version Show Printable Version
Email this Page Email this Page

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Rules



All times are GMT. The time now is 10:29 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Transverse Styles
  • Top
  • Archive
  • vBSEO
  • Contact Us
LinkBack
LinkBack URL LinkBack URL
About LinkBacks About LinkBacks
Bookmark & Share
Digg this Thread! Digg this Thread!
Add Thread to del.icio.us Add Thread to del.icio.us
Bookmark in Technorati Bookmark in Technorati
Furl this Thread! Furl this Thread!