View Full Version : Disable Post Report Link for a forum
Lynne
05-20-2009, 10:00 PM
If you want to NOT show the Post Report Link in one forum, forumid 'x', then you can write a simple plugin (change 'x' to be the forumid):
hook_location: postbit_display_complete
if ($this->forum['forumid'] == 'x')
{
$show['reportlink'] = false;
}That code will simply not show the link. However, if your users are smart enough to figure out the url to the report.php page and add in the post id, they will still be able to report it. So, to completely disable reporting in that forum, you may also add another plugin (change 'x' to be the forumid):
hook_location: report_start
if ($threadinfo['forumid'] == 'x')
{
print_no_permission();
}You could actually only add the second plugin and then the link to report the post will be there, but the user will get the No Permission message upon clicking it.
Come2Daddy
05-25-2009, 04:00 PM
nice tips
thanks a lot
Arcade Fire
07-22-2009, 04:14 PM
And...
Disable Post Report Link for a user, based on ['userid']...
How to be?
Thanks
Lynne
07-22-2009, 09:57 PM
And...
Disable Post Report Link for a user, based on ['userid']...
How to be?
Thanks
You can try changing the condition to if ($vbulletin->userinfo['userid'] == x) instead. Try it on a test site and see.
Arcade Fire
07-27-2009, 02:27 PM
Thanks Lynne
Works fine!!
compfix
09-29-2009, 12:07 AM
This works great and thanks for the tip. I have one user who seems to want to use the 'report a post' to just to irk our mods. What I'd like to do is this:
if this person tries to report a post, I simply want it to go right back to the forum home page - 'not 'print no permission' message.
Do you have any suggestions.
Thanks
Rich
Lynne
09-29-2009, 01:17 AM
You could just use a standard redirect (report_start hook location):
if ($vbulletin->userinfo['userid'] == x)
{
$vbulletin->url = 'index.php?' . $vbulletin->session->vars['sessionurl'];
eval(print_standard_redirect('Thank you for your report', false, true));
}
Change x to the userid of the user and then change 'Thank you for your report' to whatever redirect message you want displayed.
compfix
09-30-2009, 11:40 PM
I put this in the report.php at this location
($hook = vBulletinHook::fetch_hook('report_start')) ? eval($hook) : false;
if+($vbulletin->userinfo['UserID'])+== 2637)
{
++++++++++++$vbulletin->url+=+'forum/index.php?'+.+$vbulletin->session->vars['sessionurl'];
++++++++++++eval(print_standard_redirect('Thank+yo u+for+your+report',+false,+true));
}+
And I get an error when I test it.
Am I putting it in the correct location?
Thanks for your help
--------------- Added 1254362474 at 1254362474 ---------------
disregard - I figured it out.. thanks for your help!
lm3a.net
12-04-2009, 05:57 AM
it works great
thank u
Sorry to lift it up... how to make it for several forums (for 4.2)?
if (in_array($foruminfo['forumid'], array(1,2,3)))
or
if (in_array($vbulletin->forum['forumid'], array(1,2,3)))
don't seems to work :(
Lynne
03-12-2015, 09:37 PM
Sorry to lift it up... how to make it for several forums (for 4.2)?
if (in_array($foruminfo['forumid'], array(1,2,3)))
or
if (in_array($vbulletin->forum['forumid'], array(1,2,3)))
don't seems to work :(
You need to use the variable I used in the original post regarding this (for hook location postbit_display_complete), $this->forum['forumid']
if (in_array($this->forum['forumid'] , array(1,2,3)))
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.