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

Reply
 
Thread Tools
Really Ignored Users in Showthread Details »»
Really Ignored Users in Showthread
Version: 1.0.0, by vbenhancer vbenhancer is offline
Developer Last Online: Nov 2012 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.8.x Rating:
Released: 12-17-2009 Last Update: Never Installs: 37
Uses Plugins Auto-Templates
 
No support by the author.

As requested in this thread: vBulletin Community Forum - View Single Post - Ignore function as you see Wayne's answer, it is possible to completely ignore any posts from users who are in your ignore list...

Without this product, your postbit for an ignored user will look like this:

Installing this product will simply drop this part, which is boring for many. When you ignore someone, you really want it to be ignored, not halfway done.

Wayne suggest to delete the named templates, but i see a problem for moderators and admins... Staff have to see ignored notices, because they are staff who also have to manage ignored users... So my small plugin fix this. It will deactivate these templates when you are not part of staff only.

This is a simple plugin on Showthread, so it will not delete the template, just deactivate it, so you're safe.

Download Now

File Type: zip nex_postbit_really_ignore.zip (942 Bytes, 180 views)

Screenshots

File Type: jpg nex_postbit_really_ignore.jpg (11.0 KB, 0 views)

Show Your Support

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

Comments
  #12  
Old 07-07-2010, 02:57 AM
merk_aus merk_aus is offline
 
Join Date: Feb 2008
Location: Australia
Posts: 582
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just confirming for those interested I have attempted to install this on vbulletin publishing suite 4.0.4 and it works as designed.
Reply With Quote
  #13  
Old 08-12-2010, 10:14 PM
AndrewRich's Avatar
AndrewRich AndrewRich is offline
 
Join Date: Dec 2007
Location: Palo Alto, CA
Posts: 67
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since I couldn't get around the bug in this mod, I made my own smaller change to postbit_ignore and postbit_ignore_global:

postbit_ignore_global:
Before
PHP Code:
<a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a
After (just comment out the line)
PHP Code:
<!--         <a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a> --><!-- do not display "View post" link to ignored user --> 
postbit_ignore:
Before
PHP Code:
<a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a
After (just comment out the line)
PHP Code:
<!--        <a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a> --><!-- do not display "view post" link to ignored user --> 
Reply With Quote
  #14  
Old 08-02-2011, 05:51 PM
Max Taxable's Avatar
Max Taxable Max Taxable is offline
 
Join Date: Feb 2011
Posts: 3,134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah, when the ignored user is quoted by another user, it still shows anyway. So what good is it?
Reply With Quote
  #15  
Old 02-11-2012, 04:36 PM
New Joe's Avatar
New Joe New Joe is offline
 
Join Date: May 2009
Posts: 1,128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by merk_aus View Post
Just confirming for those interested I have attempted to install this on vbulletin publishing suite 4.0.4 and it works as designed.
I've installed it on vb 4.1.10 and it doesn't work.
Would love to see this working for vb 4
Reply With Quote
  #16  
Old 02-16-2016, 07:47 AM
Masterix Masterix is offline
 
Join Date: Jan 2008
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AndrewRich View Post
Since I couldn't get around the bug in this mod, I made my own smaller change to postbit_ignore and postbit_ignore_global:

postbit_ignore_global:
Before
PHP Code:
<a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a
After (just comment out the line)
PHP Code:
<!--         <a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a> --><!-- do not display "View post" link to ignored user --> 
postbit_ignore:
Before
PHP Code:
<a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a
After (just comment out the line)
PHP Code:
<!--        <a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a> --><!-- do not display "view post" link to ignored user --> 
A better way (vB 3.x)

Add:
PHP Code:
<if condition="is_member_of($bbuserinfo, 5,6,7)">
<
a style="float:$stylevar[right]href="showpost.php?$session[sessionurl]p=$post[postid]target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a>
</if> 
in both templates.

So your Staff can see the original.
Reply With Quote
  #17  
Old 02-28-2019, 01:16 PM
mindhunter77 mindhunter77 is offline
 
Join Date: Jan 2006
Posts: 194
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyway to make this work on forumdisplay as well?
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 03:58 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.04763 seconds
  • Memory Usage 2,334KB
  • Queries Executed 24 (?)
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
  • (9)bbcode_php
  • (2)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
  • (1)pagenav_pagelink
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (6)postbit
  • (2)postbit_attachment
  • (7)postbit_onlinestatus
  • (7)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
  • 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_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