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

Reply
 
Thread Tools
[DBTech] User Status & Moods v1 (vB4) Details »»
[DBTech] User Status & Moods v1 (vB4)
Version: 1.3.6pl2, by DragonByte Tech DragonByte Tech is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Category: Mini Mods - Version: 4.x.x Rating:
Released: 05-31-2010 Last Update: 12-02-2014 Installs: 531
DB Changes Uses Plugins
Additional Files Translations  
No support by the author.

DragonByte Technologies are proud to present User Status & Moods v1: A mini mod to give your members the option of setting Facebook-like status updates / mood.


Why User Status & Moods?

Sometimes, a simple "mood" isn't enough. DBTech's User Status & Moods mods lets your members put their current doings and feelings into a short message to be displayed next to their posts and in their profiles.

-------------------------------------------------------------------------------------------

If you like this mod please hit the button to the right ---->

Please remember to click the, button to the right if you installed the mod ---->

What does 'Marking As Installed' do ?

* It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available.

*
For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention.

* Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications.

We appreciate the support!
-------------------------------------------------------------------------------------------

Priority support for this version is handled at the Developers Website.

-------------------------------------------------------------------------------------------

Major Features

In-Line Editing: You can quickly update your status either from your profile, or from any of your posts, all with AJAX and all without reloading the page.

Postbit Integration: Members' statuses will show next to all their posts.

Profile Integration: Edit statuses and show a list of recent statuses in a member's profile.

-------------------------------------------------------------------------------------------

To Install:
  1. Upload all files in the "upload" folder to your forum.
  2. Import the product file via the product manager in your AdminCP.
  3. Done!
----------------------------------------------------------------------------------

Feature List
  • AJAX-enabled
  • Edit statuses inline or in profiles
  • Edit moods inline or in profiles
  • List a member's recent statuses in their profiles
  • Ability to ban usergroups from posting statuses
  • Ability to set usergroups as able to edit others' statuses
  • Toggle character limit
  • Settable status prefix
  • Settable default status
  • Uses vBulletin's Censorship options to censor banned words

Download Now

File Type: zip [DBTech] User Status & Moods v1.3.6-pl2.zip (317.7 KB, 430 views)

Screenshots

File Type: jpg fbstatus1.jpg (75.6 KB, 0 views)
File Type: jpg fbstatus2_.jpg (53.7 KB, 0 views)

Show Your Support

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

Comments
  #612  
Old 10-30-2011, 11:15 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PL2 was just a update to make the dropdown work correctly.
Reply With Quote
  #613  
Old 10-30-2011, 04:33 PM
DragonByte Tech's Avatar
DragonByte Tech DragonByte Tech is offline
 
Join Date: Feb 2010
Location: Scotland
Posts: 8,814
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please do not cross post to both vb3 and vb4 as we rely on the thread to determine basic information about a persons forum so we can test reported issues more reliably. Thanks

Fillip
Reply With Quote
  #614  
Old 10-30-2011, 07:41 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WDS View Post
could somebody please explain how to do it?
You need to create plugin as ozzy47 explaind. After you have this plugin created you can use {vb:raw template_hook.dbtech_status} and {vb:raw template_hook.dbtech_mood} wherever you want it in your postbit (you don't use postbit legacy).

For this effect you need to edit your postbit template.

Find:

HTML Code:
<div class="username_container">
					<vb:if condition="$post['userid']">
						{vb:raw memberaction_dropdown}
						{vb:raw post.onlinestatus}
					<vb:else />
						<span class="username guest">{vb:raw post.username}</span>
					</vb:if>
Edit it so it looks like:

HTML Code:
<div class="username_container">
					<vb:if condition="$post['userid']">
						{vb:raw memberaction_dropdown}
						{vb:raw post.onlinestatus}

{vb:raw template_hook.dbtech_status}

					<vb:else />
						<span class="username guest">{vb:raw post.username}</span>
					</vb:if>
In your picture you didn't included online status, so I placed status after online status, you could choose to have online status after it. Or don't have it at all (just delete it from template).
Reply With Quote
Благодарность от:
WDS
  #615  
Old 11-02-2011, 07:45 PM
WDS WDS is offline
 
Join Date: May 2011
Posts: 170
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alan_SP View Post
You need to create plugin as ozzy47 explaind. After you have this plugin created you can use {vb:raw template_hook.dbtech_status} and {vb:raw template_hook.dbtech_mood} wherever you want it in your postbit (you don't use postbit legacy).

For this effect you need to edit your postbit template.

Find:

HTML Code:
<div class="username_container">
					<vb:if condition="$post['userid']">
						{vb:raw memberaction_dropdown}
						{vb:raw post.onlinestatus}
					<vb:else />
						<span class="username guest">{vb:raw post.username}</span>
					</vb:if>
Edit it so it looks like:

HTML Code:
<div class="username_container">
					<vb:if condition="$post['userid']">
						{vb:raw memberaction_dropdown}
						{vb:raw post.onlinestatus}

{vb:raw template_hook.dbtech_status}

					<vb:else />
						<span class="username guest">{vb:raw post.username}</span>
					</vb:if>
In your picture you didn't included online status, so I placed status after online status, you could choose to have online status after it. Or don't have it at all (just delete it from template).
Ok, thank you very much, the first part I got it, now I need to position the state on the same line dl (Nick, online status) to make it like the picture, I tried various configurations with CSS but I always stay in top nick and attached to the avatar.

Thank you very much.
Reply With Quote
  #616  
Old 11-02-2011, 09:33 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You may try to use table?

Try using code like this:

HTML Code:
<table>
<tr>
<td>{vb:raw memberaction_dropdown}</td>
<td>{vb:raw post.onlinestatus}</td>
<td>{vb:raw template_hook.dbtech_status}</td>
</tr>
</table>
And play with width of td of each element till you're satisfied with results if needed.

Thinking of it, different browser could produce different results.
Reply With Quote
  #617  
Old 11-02-2011, 09:56 PM
gamerzhut gamerzhut is offline
 
Join Date: Jan 2010
Posts: 136
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
Please enter the prefix you would like to add to all statuses. 

For example, entering is would produce the following: 

{username} is .........
[/QUOTE]

Quote:
Originally Posted by DragonByte Tech View Post
Oh, no that isn't functional, it's just there as an indication
We can definitely look at adding this in though.
Any update for this?? Still the user name is not showing up!!
Reply With Quote
  #618  
Old 11-02-2011, 10:19 PM
WDS WDS is offline
 
Join Date: May 2011
Posts: 170
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alan_SP View Post
You may try to use table?

Try using code like this:

HTML Code:
<table>
<tr>
<td>{vb:raw memberaction_dropdown}</td>
<td>{vb:raw post.onlinestatus}</td>
<td>{vb:raw template_hook.dbtech_status}</td>
</tr>
</table>
And play with width of td of each element till you're satisfied with results if needed.

Thinking of it, different browser could produce different results.
Thank you very much worked.
I have a question now spontaneously speak d elas tables. How could i get a table in the avatr to center vertically?
Reply With Quote
  #619  
Old 11-03-2011, 01:23 PM
Dave Hybrid's Avatar
Dave Hybrid Dave Hybrid is offline
 
Join Date: Mar 2007
Posts: 463
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

BUG:

The status edit block in member profile doesnt update, if i enter a status it shows in postbit but profile always says the default no status message.
Reply With Quote
  #620  
Old 11-03-2011, 02:20 PM
WDS WDS is offline
 
Join Date: May 2011
Posts: 170
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dave Hybrid View Post
BUG:

The status edit block in member profile doesnt update, if i enter a status it shows in postbit but profile always says the default no status message.
umm, I do not understand ...
this is for me?
Reply With Quote
  #621  
Old 11-03-2011, 04:35 PM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dave Hybrid View Post
BUG:

The status edit block in member profile doesnt update, if i enter a status it shows in postbit but profile always says the default no status message.
What is the Cache Time (in minutes) set to for that block?
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 05:34 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.05946 seconds
  • Memory Usage 2,377KB
  • Queries Executed 28 (?)
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
  • (6)bbcode_html
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (13)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)postbit_attachment
  • (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_postinfo_query
  • fetch_postinfo
  • 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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete