Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Buddy List on User CP Details »»
Buddy List on User CP
Version: 1.00, by Gray Matter Gray Matter is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: End-User Options - Version: 3.6.5 Rating:
Released: 03-04-2007 Last Update: 03-04-2007 Installs: 17
Uses Plugins Template Edits
 
No support by the author.

This hack will show a user's buddy list on their User CP home page.

All instructions are in the zip file. See below for screenshots.

Show Your Support

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

Comments
  #12  
Old 03-03-2008, 03:11 AM
Warcaptain Warcaptain is offline
 
Join Date: Jul 2002
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

id like for the buddy list to appear on the right side of the screen.. so the subscribed threads etc are all sandwiched between the menu on the left and the buddy list on the right...

cant figure it out :\


nevermind guys, got it!

great!

really.. i think it looks way better this way.
Reply With Quote
  #13  
Old 05-09-2008, 02:38 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

/me uninstalls vb3.7.0 covers these bases
Reply With Quote
  #14  
Old 05-15-2008, 10:42 AM
Triky's Avatar
Triky Triky is offline
 
Join Date: Mar 2007
Location: [Italy]
Posts: 728
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It would be great below the latest horizontal table; sure, it has to be horizontal too.
If you will do it I will install it, becouse I'm modding hard my style right now. LOL
Reply With Quote
  #15  
Old 05-15-2008, 03:04 PM
Gray Matter Gray Matter is offline
 
Join Date: May 2005
Posts: 260
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I will be releasing a new, much-improved version of this hack (including a port to 3.7.x) in June.

And I will take your suggestion into consideration, Triky.
Reply With Quote
  #16  
Old 05-16-2008, 10:22 AM
Triky's Avatar
Triky Triky is offline
 
Join Date: Mar 2007
Location: [Italy]
Posts: 728
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh, remember to release it also for vB 3.6.x! I'm using this version! LOL
Anyway, thanks!
Reply With Quote
  #17  
Old 11-30-2008, 02:06 PM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm trying to make the Online/Offline options collapsible. Anyone know where I can find where the code is written for $onlineusers and $offlineusers so I can put an id parameter in the table data tag?
Reply With Quote
  #18  
Old 11-30-2008, 02:18 PM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmmm.. I tried just wrapping the variables in <tr> and <td> tags and adding the id parameter to those.. still didn't work.

What am I doing wrong?

Code:
		<tr>
			<td class="thead" align="center" colspan="3">   <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('USERCP_BUDDYLIST_ONLINE')"><img id="collapseimg_USERCP_BUDDYLIST_ONLINE" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_forumhome_recentposts].gif" alt="" border="0" /></a>
			<span class="smallfont">-- <strong>$vbphrase[online]</strong>--</span>
			</td>
		</tr>
<tr id="USERCP_BUDDYLIST_ONLINE">
<td>
$onlineusers
</td>
</tr>
		<tr>
			<td class="thead" align="center" colspan="3">   <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('USERCP_BUDDYLIST_OFFLINE')"><img id="collapseimg_USERCP_BUDDYLIST_OFFLINE" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_forumhome_recentposts].gif" alt="" border="0" /></a>
			<span class="smallfont">-- <strong>$vbphrase[offline]</strong> --</span>
			</td>
		</tr>
<tr id="USERCP_BUDDYLIST_OFFLINE">
<td>
$offlineusers
</td>
</tr>
Reply With Quote
  #19  
Old 11-30-2008, 03:05 PM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nevermind, I figured out how to do it.
Reply With Quote
  #20  
Old 11-30-2008, 03:18 PM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmmm, I hate to complain as this is exactly what I've been looking for, but is there any way to only make it show up in the usercp instead of also showing up in edit profile, edit signature etc?

(It doesn't seem to work correctly on those pages anyway)
Reply With Quote
  #21  
Old 11-30-2008, 03:32 PM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, figured that out too. Just add the code to template usercp instead of usercp_shell.
Reply With Quote
Reply


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

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

Forum Jump


All times are GMT. The time now is 11:54 AM.


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

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete