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 1 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 03-02-2008, 09:55 AM   #2
Michael Biddle
Staff
Michael Biddle's Avatar

Activity Longevity
1/20 18/20
Today Posts
0/3 sssss2818
Location: Anaheim
Age: 22
Michael Biddle is on a distinguished road
Status: Offline Default
Thanks for sharing
Support will only be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.3.0 Gold Released with New "Virtual HTML Display" Feature Available for download now

vBSEO Google Sitemap Generator - Version 2.5 Released

Crawlability Network: vBulletin SEO | vBulletin Hackers
Reply With Quote
Old 03-06-2008, 03:38 AM   #3
Kuefler
vB Newbie

Activity Longevity
0/20 8/20
Today Posts
0/3 sssssss18
Kuefler is on a distinguished road
Status: Offline Default
It scewed up my site, now Post can't be viewed!, What do I do?

NintendoDestination.com
Reply With Quote Installed
Old 03-06-2008, 04:21 AM   #4
Michael Biddle
Staff
Michael Biddle's Avatar

Activity Longevity
1/20 18/20
Today Posts
0/3 sssss2818
Location: Anaheim
Age: 22
Michael Biddle is on a distinguished road
Status: Offline Default
Reverse steps.
Support will only be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.3.0 Gold Released with New "Virtual HTML Display" Feature Available for download now

vBSEO Google Sitemap Generator - Version 2.5 Released

Crawlability Network: vBulletin SEO | vBulletin Hackers
Reply With Quote
Old 03-06-2008, 04:44 AM   #5
Kuefler
vB Newbie

Activity Longevity
0/20 8/20
Today Posts
0/3 sssssss18
Kuefler is on a distinguished road
Status: Offline Default
Quote:
Originally Posted by Michael Biddle View Post
Reverse steps.
I did, the first step is the problem.
Reply With Quote Installed
Old 03-06-2008, 05:44 AM   #6
Michael Biddle
Staff
Michael Biddle's Avatar

Activity Longevity
1/20 18/20
Today Posts
0/3 sssss2818
Location: Anaheim
Age: 22
Michael Biddle is on a distinguished road
Status: Offline Default
First step being the uninstall product?
Support will only be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.3.0 Gold Released with New "Virtual HTML Display" Feature Available for download now

vBSEO Google Sitemap Generator - Version 2.5 Released

Crawlability Network: vBulletin SEO | vBulletin Hackers
Reply With Quote
Old 03-06-2008, 07:46 PM   #7
Kuefler
vB Newbie

Activity Longevity
0/20 8/20
Today Posts
0/3 sssssss18
Kuefler is on a distinguished road
Status: Offline Default
The problem is fixed as soon as it's uninstalled.
Reply With Quote Installed
Old 03-07-2008, 09:51 PM   #8
Kuefler
vB Newbie

Activity Longevity
0/20 8/20
Today Posts
0/3 sssssss18
Kuefler is on a distinguished road
Status: Offline Default
It turns out, that this plug in doesn't do what I want, so don't not download it on my account, I probably installed it incorrectly.
Reply With Quote Installed
Old 07-03-2008, 07:03 PM   #9
SaNaLLoRd
vB Newbie

SaNaLLoRd's Avatar

Activity Longevity
0/20 7/20
Today Posts
0/3 sssssss17
Location: Turkey
SaNaLLoRd is on a distinguished road
Send a message via MSN to SaNaLLoRd
Status: Offline Default
Thanks for sharing
Reply With Quote Installed
Old 07-04-2008, 02:02 AM   #10
shaggydaddy
vB Newbie

Activity Longevity
0/20 7/20
Today Posts
0/3 ssssssss2
shaggydaddy is on a distinguished road
Status: Offline Default
Quote:
Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
what do i do? i get this msg whenever i hit 'select an userbar'.
Reply With Quote Installed

Reply
Page 1 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 06:31 AM.

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!