Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons

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
  #582  
Old 09-02-2011, 06:15 PM
odie3 odie3 is offline
 
Join Date: Mar 2007
Location: Kyle USA
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozzy47 View Post
Anyone having issues with the dropdown not working can upload the following file to dbtech/status/clientscript folder, overwriting the status.js that is there now. This works on everything except 3.8.x with IE
This fixed it for me for vB 4.1.5 .... removed attachment, they r not free.
Reply With Quote
  #583  
Old 09-09-2011, 08:10 AM
dmandem dmandem is offline
 
Join Date: Aug 2011
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do I place this where I want it in the postbit? It looks messy where it is on my forum at the moment.

Thanks.
Reply With Quote
  #584  
Old 09-09-2011, 10:24 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Remember DBT does not support customizations to it's products, so use this at your own risk.

You can create the following plugin to give yourself some:

AdminCP > Plugins & Product > Add New Plugin

Product: vBulletin
Hook Location: postbit_display_complete
Title: Manual USM Postbit Integration
Execution Order: 5
Plugin is Active: Yes
Plugin PHP Code:

PHP Code:
$opts =& $this->registry->options;
$backup = array($template_hook['postbit_userinfo_left'], $opts['dbtech_status_enabled'], $opts['dbtech_status_moodenabled']);

foreach (array(
'status''mood') AS $i => $which)
{    
//for both types separately
    
if ($backup[$i 1])
    {    
//only enabled individually
        
$opts['dbtech_status_enabled'] = !$i;
        
$opts['dbtech_status_moodenabled'] = $i;
        
$template_hook['postbit_userinfo_left'] = '';
        require(
DIR '/dbtech/status/hooks/postbit_display_complete.php');
        
$template_hook['dbtech_' $which] = $template_hook['postbit_userinfo_left'];
    }
}

list(
$template_hook['postbit_userinfo_left'], $opts['dbtech_status_enabled'], $opts['dbtech_status_moodenabled']) = $backup;
unset(
$opts$backup); 
That will give you access to these variables for use in your postbit/_legacy templates:

HTML Code:
{vb:raw template_hook.dbtech_status} and {vb:raw template_hook.dbtech_mood}
Turn off the original Postbit Integration plugin from USM when ready, or swap between them. Should be safe from upgrades as well.
Reply With Quote
  #585  
Old 09-09-2011, 01:24 PM
dmandem dmandem is offline
 
Join Date: Aug 2011
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Why use at my own risk? Havent you tried it? What will it break?
Reply With Quote
  #586  
Old 09-09-2011, 03:24 PM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It wont break anything, but like I said DBT does not support customizations to it's products

I know of 2 members there that did this and it worked out fine for them. I never did it on my site as I liked the original position.
Reply With Quote
  #587  
Old 09-14-2011, 04:14 PM
CouponWCents CouponWCents is offline
 
Join Date: Jun 2011
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have read through the entire thread and still can't figure out how to get this mod to work in postbit legacy. Works fine is regular postbit but not legacy. HELP!
Reply With Quote
  #588  
Old 09-30-2011, 07:26 PM
infun infun is offline
 
Join Date: Jul 2011
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I can not write the Hebrew language status
But in English it gives to register
Can help?
Reply With Quote
  #589  
Old 10-01-2011, 01:39 AM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by infun View Post
I can not write the Hebrew language status
But in English it gives to register
Can help?
I am not sure exactly what you are asking, could you try to explain a little more please.
Reply With Quote
  #590  
Old 10-12-2011, 02:57 AM
iDHKHCM iDHKHCM is offline
 
Join Date: Aug 2011
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've read and i dont see the issue im currently having. If the developer or anyone else with any ideas wants to help, i'd gladly listen.

So mod was working Great vb.4.1.5 i cannot tell you when or why it stopped working.
But when u click to change your Mood i can see all the icons but when you CLICK to select one. Nothing happens.

I've uninstalled whole mod xml, re-added files, installed new xml same issue.

So im assume maybe some template code would fix it. but im not sure. any ideas?

Please dont ask for screen shots. everything works fine, just when u click on a MOOD it wont allow user to select it. CLicking it does nothing. Thanks in advance for your help.
Reply With Quote
  #591  
Old 10-12-2011, 05:14 AM
bintoro bintoro is offline
 
Join Date: Dec 2010
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by iDHKHCM View Post
So mod was working Great vb.4.1.5 i cannot tell you when or why it stopped working.
But when u click to change your Mood i can see all the icons but when you CLICK to select one. Nothing happens.
I get the same problem to after upgrade to 4.1.7 and install new version.
Then, find this which resolve problem :

https://vborg.vbsupport.ru/showpost....&postcount=575
Reply With Quote
Reply

Thread Tools

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:48 AM.


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.12205 seconds
  • Memory Usage 2,361KB
  • Queries Executed 26 (?)
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_html
  • (1)bbcode_php
  • (3)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
  • (12)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)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_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