The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBStatus - Facebook Style Status Display (v4) Details »» | |||||||||||||||||||||||||||
vBStatus - Facebook Style Status Display (v4)
Developer Last Online: Nov 2023
This modification thread will not be upgraded, since it is possible that some users may prefer v4. Compatible with 3.6.x and 3.5.x vBStatus allows your users to update their status to tell other members what they are doing/thinking at any given time. A user's status is displayed under their names in their postbit, in their User Profile, and anywhere else you choose!User's can edit their status quickly and easily via AJAX. Administrative options include:
Update 2.0: Please reinstall the product xml file, and re-edit your templates following the new instructions in the readme file. This is to correct a small cosmetic bug that displays non-functional links to guests and non-admins. Update 3.0: A number of bugs were fixed, and a few new admin options were added. Please uninstall the previous product and reinstall this one. Please re-edit your templates and reupload all files. Sorry for the inconvenience (but at least we are getting this handled in the first 12 hours of release.) Update 4.0: This is a fairly comprehensive update. You must remove all previous template edits and add the new template code. You must also "Allow Overwrite" when importing the new product. The DB structure hasn't changed. New features include:
I added status prefixes. If your updating from version 4 just reimport the product (with overwrite set to yes), and reupload all the files. No template edits necessary when upgrading from v4 to v4.01. (And I'm not going to change the file version because this update came so quickly on the heals of v4.) Please do not forget to click INSTALL Show Your Support
|
Comments |
#302
|
||||
|
||||
Any idea to get it working in the navbar? Please post the code. And for the online.php the code too.
|
#303
|
|||
|
|||
You can use this with Tcatt's Image Resizer if you uninstall the resizer and then install Status, and re-install Tcatt.
|
#304
|
|||
|
|||
Banned Groups can still see default message but they can't edit, is this right?
Shouldn't it not show up for them at all? VB 3.7.3.. |
#305
|
|||
|
|||
Hi,
what postcount number is it? I cannot find it either... I just found where you explained how to change the name of the link "Edit", not how to make it save when hitting the "Enter" button. Thanks in advance. |
#306
|
||||
|
||||
Last night I’ve spend several hours comparing versions and solutions given here at this thread, and I highly doubt it’s still there.
For sure I know some of the posts and some of the versions uploaded by members have been deleted, so above post might be one of them. Also, I wonder which conflicts there exactly are, together with which other mods? PS. it's still working like a charm |
#307
|
|||
|
|||
Couple suggestions:
1) Merge two .js (vbstatus/ajax_wrapper.js and vbstatus/headerjavascript.js) into single one - provides faster load time 2) Add language phrase vbstatus_add_activity having "- enter you current activity" and set vbStatus Options/Default Status to null. This phrase would be displayed for active users if there is no previous status. So there would be no need for 'Edit' link and nothing will be displayed when having empty status. TEMPLATE MEMBERINFO: Instead: Code:
<h1>$prepared[musername] $prepared[onlinestatus]</h1> Code:
<h1>$prepared[musername] $prepared[onlinestatus] <!--BEGIN VB STATUS--> <if condition="$vbulletin->options['vbstatus_active']"> <if condition="$userinfo[vbstatus_status]"> <div id="vbstatus_$userinfo[userid]" class=smallfont style="display:inline"> <if condition="$bbuserinfo['userid']==$userinfo['userid'] OR $vbstatus_isadmin==1"> <if condition="$vbulletin->options['vbstatus_inline']"> <a href="javascript:Att_AjaxDiv('inline=1&userid=$userinfo[userid]&postid=$userinfo[userid]','vbstatus/vbstatus_ajax.php','vbstatus_$userinfo[userid]')">$userinfo[vbstatus_status]</a> <else /> <a href="javascript:Att_Ajax('userid=$userinfo[userid]&postid=$userinfo[userid]','vbstatus/vbstatus_ajax.php')">$userinfo[vbstatus_status]</a> </if> <else /> $userinfo[vbstatus_status] </if> </div> <else /> <if condition="$bbuserinfo['userid']==$userinfo['userid'] OR $vbstatus_isadmin==1"> <div id="vbstatus_$userinfo[userid]" class=smallfont style="display:inline"> <if condition="$vbulletin->options['vbstatus_inline']"> <a href="javascript:Att_AjaxDiv('inline=1&userid=$userinfo[userid]&postid=$userinfo[userid]','vbstatus/vbstatus_ajax.php','vbstatus_$userinfo[userid]')">$vbphrase[vbstatus_add_activity]</a> <else /> <a href="javascript:Att_Ajax('userid=$userinfo[userid]&postid=$userinfo[userid]','vbstatus/vbstatus_ajax.php')">$vbphrase[vbstatus_add_activity]</a> </if> </div> </if> </if> </if> <!--END VB STATUS--> </h1> TEMPLATE postbit_legacy: After: Code:
$post[musername] </if> </div> Code:
<!--BEGIN VB STATUS--> <if condition="$vbulletin->options['vbstatus_active']"> <if condition="$post[vbstatus_status]"> <div id="vbstatus_$post[postid]" class=smallfont style="display:inline"> <if condition="$bbuserinfo['userid']==$post['userid'] OR $vbstatus_isadmin==1"> <if condition="$vbulletin->options['vbstatus_inline']"> <a href="javascript:Att_AjaxDiv('inline=1&userid=$post[userid]&postid=$post[postid]','vbstatus/vbstatus_ajax.php','vbstatus_$post[postid]')"> $post[vbstatus_status]</a> <else /> <a href="javascript:Att_Ajax('userid=$post[userid]&postid=$post[postid]','vbstatus/vbstatus_ajax.php')">$post[vbstatus_status]</a> </if> <else /> $post[vbstatus_status] </if> </div> <else /> <if condition="$bbuserinfo['userid']==$post['userid'] OR $vbstatus_isadmin==1"> <div id="vbstatus_$post[postid]" class=smallfont style="display:inline"> <if condition="$vbulletin->options['vbstatus_inline']"> <a href="javascript:Att_AjaxDiv('inline=1&userid=$post[userid]&postid=$post[postid]','vbstatus/vbstatus_ajax.php','vbstatus_$post[postid]')">$vbphrase[vbstatus_add_activity]</a> <else /> <a href="javascript:Att_Ajax('userid=$post[userid]&postid=$post[postid]','vbstatus/vbstatus_ajax.php')">$vbphrase[vbstatus_add_activity]</a> </if> </div> </if> </if> </if> <!--END VB STATUS--> |
#308
|
||||
|
||||
Hi Captain, can you post the corrected code, please?
|
#309
|
|||
|
|||
can someone tell me how to get this below the user title instead of above it? This works great btw. Thanks in advance.
|
#310
|
|||
|
|||
Quote:
Quote:
Quote:
I've uninstalled this mod but i'd love it... |
#311
|
|||
|
|||
sick mod Attilitus, my site will benefit from having this added to it. not to mention it was very easy to install + havent seen any bugs yet an i've tested it out. so thanks for sharing this with other vBulletin owners.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|