Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by Admin (Coder) Admin is offline
Developer Last Online: Nov 2024 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 01-03-2002 Last Update: Never Installs: 13
 
No support by the author.

One of the best ideas I've had lately, if I may say so myself.

First of all, if you moderate new posts in your forum do NOT, do NOT install this hack!
Don't come to me crying if you do install it.
Read down to understand why.
And while I have your attention, don't bother asking for a version that works with moderation of new posts. There is a reason why I chose to use this system, and it would take a LOT (and I mean, really really a lot) of hacking to do this without that system.

Second, in case you were wondering, this hack is NOT the infamous Lockdown hack.
The only resemblance is that posts are hidden in this hack... that is all.

This hacks allows moderators and admins to post new posts in threads, and make these posts only readable by other mods and admins, meaning others users can't see them.
This is very handy when you need to ask a fellow moderator something in regard to a thread he replied to, etc.
Or, of course, if you want to talk behind the users' back. (as someone else cleverly pointed out )

I'm afraid I can't give you a demo or a screen shot of this hack, but imagine this.
In second thought, take a look here: https://vborg.vbsupport.ru/attachmen...&postid=211039
When you reply, if you are a mod, you have a new checkbox at the bottom of the screen, asking you if you'd like to hide this post.
If you check that box, the reply will be hidden from everyone except for mods and admins - they will see the post and a bolded message next to it to tell them it's hidden (so they won't quote that post in a regular post!).

That's all there is to it.

This hack basically puts hidden posts into moderation. I modified showthread.php a bit to only show un-moderated posts to mods, and this is how it works.
If you moderate new posts in your forum and install this hack, your moderators will:
a) See all un-moderated posts, basically all new posts.
b) When they go to validate these posts, the hidden posts posted by mods and admins will be on the list, and your mods might unintentionally validate these posts as well, and by that un-hiding them.

Download the attached .txt file and follow the instructions there.
There are a bit more things to edit than usual, so I suggest you edit all the files at once and then upload them together.
After you're done with the files do the template changes.

Good luck and enjoy this hack!

Show Your Support

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

Comments
  #62  
Old 04-02-2002, 10:14 AM
69-FLy-gUy's Avatar
69-FLy-gUy 69-FLy-gUy is offline
 
Join Date: Oct 2001
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hmm it still didn't work....
Reply With Quote
  #63  
Old 04-02-2002, 10:18 AM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Paste the code you have there now.
Reply With Quote
  #64  
Old 04-02-2002, 10:25 AM
69-FLy-gUy's Avatar
69-FLy-gUy 69-FLy-gUy is offline
 
Join Date: Oct 2001
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sure doing that now...

Code:
if (($bbuserinfo[usergroupid]==5 or $bbuserinfo[usergroupid]==6 or $bbuserinfo[usergroupid]==7) and $post[visible]!=1) {
		$post[hidden]='<br><b><u>This post is hidden!</u></b>';
	} else {
		$post[hidden]='';
	}

I knwo the post is hidden.. but i can't get it to show it in the postbit......
Reply With Quote
  #65  
Old 04-02-2002, 10:27 AM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Replace the first line with:
Code:
if (ismoderator() and !$post['visible']) {
Maybe that'll help.
Are you sure you have $post[hidden] in the template and you're using the right style set.
Reply With Quote
  #66  
Old 04-02-2002, 10:29 AM
69-FLy-gUy's Avatar
69-FLy-gUy 69-FLy-gUy is offline
 
Join Date: Oct 2001
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yeah. i only have 1 style.. you want me to show you the post bit also?

i am trying your edit now.. iw ill lety ou know.

still didn't work..

here is part of my postbit...

Code:
<td bgcolor="$post[backcolor]" width="175" valign="top" nowrap>
	<a name="post$post[postid]"></a>
	$post[firstnewinsert]
	<normalfont><b>$post[username]</b></normalfont><br>
	<smallfont>$post[usertitle]</smallfont><br>
	$post[avatar]<p>
	<smallfont>Registered: $post[joindate]<br>
	Location: $post[field2]<br>
	Posts: $post[posts]<br>
Threads Started: $starts<br>
	Personal Views: $personal <br>
$post[hidden]
</smallfont>
</td>
Reply With Quote
  #67  
Old 04-02-2002, 10:34 AM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I really don't know then, sorry.
Reply With Quote
  #68  
Old 04-02-2002, 10:34 AM
69-FLy-gUy's Avatar
69-FLy-gUy 69-FLy-gUy is offline
 
Join Date: Oct 2001
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

that is ok. Thanks for trying FireFly...
Reply With Quote
  #69  
Old 06-04-2002, 04:46 PM
lordofgun lordofgun is offline
 
Join Date: Jan 2002
Posts: 285
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

does this work for 2.2.5? anyone?

thanks in advance!
Reply With Quote
  #70  
Old 06-10-2002, 04:13 AM
ladyfyre's Avatar
ladyfyre ladyfyre is offline
 
Join Date: Nov 2001
Posts: 151
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

better yet...will it work with 2.2.6???
Reply With Quote
  #71  
Old 06-11-2002, 01:13 AM
lordofgun lordofgun is offline
 
Join Date: Jan 2002
Posts: 285
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i just love the quick responses to questions here.
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 01:42 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.04928 seconds
  • Memory Usage 2,306KB
  • Queries Executed 25 (?)
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
  • (3)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • 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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete