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
Who Is Replying? Details »»
Who Is Replying?
Version: 1.3, by MarkFL MarkFL is offline
Developer Last Online: Jun 2020 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 4.x.x Rating:
Released: 05-01-2015 Last Update: 03-16-2017 Installs: 25
Uses Plugins
Translations  
No support by the author.

This simple add-on will show who is replying to a thread when you view the "Thread Information" block to see who is browsing a thread. On a site where help is given to users, this can potentially save time for those who might decide to post help, only to discover they have been beaten to the punch by someone else.

Updates:

Version 1.1:
  • Added setting to set which usergroups can view who is replying.

Version 1.2:
  • Minimized the number of queries involved.
  • Now shows who is editing a post as well.

Version 1.3:
  • Text added to active users now phrased.

Installation:

In AdminCP go to Plugins & Products ► Manage Products ► Add/Import Product.

Click on "Choose File" and browse to the product xml file that was packaged in the .zip file.

Click "Import"

You MUST set your settings to enable the mod.
Each setting has an explanation of its use.

Support for this product can be found here:

Download Now

File Type: zip MarkFL - Who Is Replying v1.3.zip (3.0 KB, 37 views)

Screenshots

File Type: png whoisreplying.png (5.9 KB, 0 views)
File Type: png markf_wir_acp.png (27.8 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
4 благодарности(ей) от:
ku-med, mapleleaffans, yilmaz

Comments
  #22  
Old 02-08-2016, 01:56 AM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by blah100 View Post
@MarkFL, any idea how to make only viewable to certain usergroups? I would like this to be seen by staff members only.
I will add a setting to allow restricting to chosen usergroups.
Reply With Quote
  #23  
Old 02-09-2016, 07:17 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Update - Version 1.1:
  • Added setting to set which usergroups can view who is replying.
Reply With Quote
  #24  
Old 10-14-2016, 10:17 AM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for this mod
Reply With Quote
  #25  
Old 03-09-2017, 07:26 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Update - Version 1.2:
  • Minimized the number of queries involved.
  • Now shows who is editing a post as well.
Reply With Quote
  #26  
Old 03-17-2017, 06:03 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I checked code, this part:

PHP Code:
    if (strpos($location['location'],'newreply') !== false)
                    {
                        
$activity 'Replying';
                    }
                    elseif (
strpos($location['location'],'editpost') !== false)
                    {
                        
$activity 'Editing Post'
Can this be made into translatable phrases, my forum isn't in English. At the moment I hardcoded it in my language, but I would prefer it translatable.
Reply With Quote
Благодарность от:
MarkFL
  #27  
Old 03-17-2017, 06:16 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alan_SP View Post
I checked code, this part:

PHP Code:
    if (strpos($location['location'],'newreply') !== false)
                    {
                        
$activity 'Replying';
                    }
                    elseif (
strpos($location['location'],'editpost') !== false)
                    {
                        
$activity 'Editing Post'
Can this be made into translatable phrases, my forum isn't in English. At the moment I hardcoded it in my language, but I would prefer it translatable.
Sorry about that oversight...

Update - Version 1.3:
  • Text added to active users now phrased.
Reply With Quote
Благодарность от:
Alan_SP
  #28  
Old 03-17-2017, 06:19 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also, there are two problems:

1) When I select usergroups and save, afterwards I don't see which usergroups I saved. It would be much better if we have some feedback for which usergroups mod is selected.

I see it works, but this kind of feedback is very useful in my opinion.

2) Mod only reacts if advanced editor is used, either for replying or editing post. Is it possible that mod reacts also to quick reply? I know this probably depends on vB, but on my forum people usually use quick reply for posting and editing.

EDIT: you're great man. Fast as a lightning. :up:

EDIT2: Now that I installed v1.3, I see usergroups selected. Don't know what happend. Now it is fine.
Reply With Quote
  #29  
Old 03-17-2017, 06:26 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alan_SP View Post
Also, there are two problems:

1) When I select usergroups and save, afterwards I don't see which usergroups I saved. It would be much better if we have some feedback for which usergroups mod is selected.

I see it works, but this kind of feedback is very useful in my opinion.
This is what I see, which tells me which usergroups are selected:



Quote:
Originally Posted by Alan_SP View Post
2) Mod only reacts if advanced editor is used, either for replying or editing post. Is it possible that mod reacts also to quick reply? I know this probably depends on vB, but on my forum people usually use quick reply for posting and editing.
Yes, this won't work to let you know who happens to be typing something into the quick editor...the user has to be located on the "newreply" or "editpost" scripts. When using the quick editor, a user's location does not reflect this.
Attached Images
File Type: png markfl_wir_acp.png (31.7 KB, 0 views)
Reply With Quote
  #30  
Old 03-17-2017, 06:45 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, for some reason I didn't see selected usergroups, but now I see them, after I updated to v1.3, as I mentioned in edit2 in my previous post (you were writing your post at the time).
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 09: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.06357 seconds
  • Memory Usage 2,352KB
  • Queries Executed 27 (?)
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_php
  • (4)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
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (5)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (4)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)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