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

Reply
 
Thread Tools
Collapsable user info Details »»
Collapsable user info
Version: 1.4.1, by mad@Max mad@Max is offline
Developer Last Online: Jun 2013 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 3.7.x Rating:
Released: 08-17-2008 Last Update: 12-11-2009 Installs: 29
Uses Plugins Auto-Templates
Additional Files  
No support by the author.

This mod is cast here by it DI - BBCode [spoiler].

Installation is simple:
Upload all files from a folder upload in a root of a forum and to import a product.

History:
  • 1.0 - public release
  • 1.1 - added option choose collapse userinfo or not
  • 1.1.1 - working in PM too, bug fix
  • 1.1.2 - fixed path to jQuery,fixed little bit errors
  • 1.2 - fixed work with individual field of the user
  • 1.3 - finally fixed to work with individual fields of the users
  • 1.4
    • fixed ajax issue
    • loading jQuery happens only after first click
  • 1.4.1 - fixed some bugs, removed get-min.js (written own loader)

Troubleshooting
If to happen so, that together with the information of the user has collapse also its avatars () then open a template postbit_legacy, find $template_hook [postbit_userinfo_left] and move it below a condition
HTML Code:
			<if condition="$show['avatar']">
				<div class="smallfont">
					&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
				</div>
			</if>

DEMO


PS sorry for English

Show Your Support

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

Comments
  #22  
Old 10-21-2008, 11:21 PM
glorify's Avatar
glorify glorify is offline
 
Join Date: Aug 2004
Posts: 376
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry, it's a bug. Maybe not from your end, but the ajax definitely interferes with the functionality of either the post that was edited or quick replied. Works after a refresh. Not banging ya, just letting you know what happens.

The Ajax also interferes with this mod, and it is a known issue.
Reply With Quote
  #23  
Old 10-21-2008, 11:24 PM
mad@Max's Avatar
mad@Max mad@Max is offline
 
Join Date: Jul 2007
Location: Russia
Posts: 536
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, i mean it's not mine bug
Reply With Quote
  #24  
Old 10-21-2008, 11:28 PM
glorify's Avatar
glorify glorify is offline
 
Join Date: Aug 2004
Posts: 376
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

LOL. Yeah, I will say I am liking this the more I use it tho
Reply With Quote
  #25  
Old 01-07-2009, 02:21 AM
lazydesis lazydesis is offline
 
Join Date: Sep 2006
Posts: 234
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can this be made in such a way that the info of users other than the thread starter are collapsed?

The first post on the thread shud not have the info collapsed .. can this be done?

thanks for the mod. like it
Reply With Quote
  #26  
Old 04-26-2009, 02:19 AM
ArchangelX ArchangelX is offline
 
Join Date: Feb 2006
Location: Oahu, HI
Posts: 298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, I just installed this.

I don't understand this step:

5. Into options of mod in field write the name of just created option (for example field5).

Where do I place this at? Thanks.
Reply With Quote
  #27  
Old 04-27-2009, 12:05 PM
ArchangelX ArchangelX is offline
 
Join Date: Feb 2006
Location: Oahu, HI
Posts: 298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay, figured out that step 5, but it doesn't do anything when it's enabled...anyone else have that problem?
Reply With Quote
  #28  
Old 05-24-2009, 10:21 PM
dancue dancue is offline
 
Join Date: Feb 2008
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone get this to work with 3.8?
Reply With Quote
  #29  
Old 08-11-2009, 12:39 AM
mad@Max's Avatar
mad@Max mad@Max is offline
 
Join Date: Jul 2007
Location: Russia
Posts: 536
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hack updated to v1.4. Look in history.
Reply With Quote
  #30  
Old 12-11-2009, 12:39 AM
Adam H Adam H is offline
 
Join Date: Apr 2008
Location: UK
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ive found a bug , on my forum this mod didnt work. I looked in the source and the script tags we not closed as they should be.

In the : collapse_info template the code is currently

Code:
<if condition="!$vbulletin->products['spoiler']['active']"><script type="text/javascript" src="clientscript/jquery_load.js" /></if>
<if condition="!$vbulletin->products['lsearch']['active']">
<script type="text/javascript" src="$vboptions[bburl]/clientscript/yui/get/get-min.js" /></if>
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/cui.css" />
It needs to be changed to this :

Code:
<if condition="!$vbulletin->products['spoiler']['active']"><script type="text/javascript" src="clientscript/jquery_load.js" ></script></if>
<if condition="!$vbulletin->products['lsearch']['active']">
<script type="text/javascript" src="$vboptions[bburl]/clientscript/yui/get/get-min.js" ></script></if>
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/cui.css" ></script>
And then it works perfectly
Reply With Quote
  #31  
Old 12-12-2009, 12:58 PM
mad@Max's Avatar
mad@Max mad@Max is offline
 
Join Date: Jul 2007
Location: Russia
Posts: 536
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, you right. There is a bug. But code should be like that:
HTML Code:
<if condition="!$vbulletin->products['spoiler']['active']"><script type="text/javascript" src="clientscript/jquery_load.js" ></script></if>
<if condition="!$vbulletin->products['lsearch']['active']">
<script type="text/javascript" src="$vboptions[bburl]/clientscript/yui/get/get-min.js" ></script></if>
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/cui.css" >
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 06:27 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04960 seconds
  • Memory Usage 2,308KB
  • 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
  • (2)bbcode_code
  • (2)bbcode_html
  • (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
  • (3)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