View Full Version : Forum Home Enhancements - Disable Right Click For User Groups
da_judge
02-22-2014, 11:00 PM
This is a simple modification for your header template.
Not sure if this been posted before but though i would share it.
You can prevent chosen usergroups from using right click or ctrl+c etc
To Install is very simple, open your header template and paste code below at the top.
You must add the usergroups you want to stop using right click, separated by a comer :)
<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">
<body style="user-select: none; -khtml-user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -o-user-select: none;">
<script language="javascript" type="text/javascript">
document.oncontextmenu=RightMouseDown;
document.onmousedown = mouseDown;
function mouseDown(e) {
if (e.which==3) {//righClick
}
}
function RightMouseDown() { return false; }
</script>
</vb:if>
Tested in Internet Explorer, Firefox and Chrome
ForceHSS
02-23-2014, 08:08 PM
Works well, installed
Krusty1231
02-24-2014, 10:42 AM
Agreed, even better than the one I had. Installed/Rated.
Seven Skins
02-24-2014, 03:18 PM
If we do this, won't we get two body tags?
da_judge
02-24-2014, 06:44 PM
Not on mine mate ? only one body in my header :)
Seven Skins
02-24-2014, 11:06 PM
This is what I am saying .. this screen shot is from your own site.
Find a way to append css to body tag.
https://vborg.vbsupport.ru/external/2014/02/9.png (http://imgur.com/mlgVj9H)
da_judge
02-25-2014, 09:35 PM
My point is.. it works with 0 issues
It cause no problems that i see.. i been using for over a year.. just thought id share..
thetechgenius
07-12-2014, 07:23 PM
I like this!
I just changed around some code, and added a bit of code for my needs.
My code gives the Usergroup a small message when they right click. I have Right-Click disabled for Guests, so when a guest tries to right click, the message they get is: "Right Click is Disabled for Guests!"
Here is my code, if anyone would like to use it:
<!-- Disable Right click for Usergroups Begin -->
<vb:if condition="is_member_of($bbuserinfo, 1,8)">
<body style="user-select: none; -khtml-user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -o-user-select: none;">
<script type="text/javascript">
function catch_click(e)
{
if (!e) var e = window.event;
var right_click = (e.which ? (e.which == 3) : (e.button == 2));
if (right_click)
{
alert('Right Click is Disabled for Guests!');
return false;
}
}
document.onmousedown = catch_click;
if (document.captureEvents) document.captureEvents(Event.MOUSEDOWN);
</script>
</vb:if>
<!-- Disable Right click for Usergroups End -->
Change the code in RED to your liking. That's the message the Usergroups get when they Right Click, and the Usergroups that cannot right click.
All credit goes to the OP da_judge (https://vborg.vbsupport.ru/member.php?u=125214), I just changed the code a bit. Thank You!!
If anyone wants to see the popup message before adding this code, go to my site and try it yourself. You dont need to login or anything, I have Disabled Right Click for Guests.
Demo: https://thetechgenius.net
keyla31
03-24-2015, 11:53 PM
beautiful, I love this
concepts
04-10-2015, 02:01 PM
Thanks!
Replicant
04-10-2015, 06:50 PM
If anyone wants to see the popup message before adding this code, go to my site and try it yourself. You dont need to login or anything, I have Disabled Right Click for Guests.
Demo: https://thetechgenius.net
FYI,
I was able to right-click and get the right-click context menu on any page on the Demo site.
Using Chrome on LinuxMint.
MacroPhotoPro
04-16-2015, 11:29 PM
What if I don't want to disable right-click altogether (i.e., I want it left on for text) but I just want to disable right-clicking on an image?
How would I tweak this?
Thanks,
Macgiber
06-23-2015, 06:02 PM
Thanks!
risecompany
12-03-2017, 03:05 AM
Not Working with chrome! It will be great if you fixed the code, Thanks in advance.
MarkFL
12-03-2017, 04:08 AM
Not Working with chrome! It will be great if you fixed the code, Thanks in advance.
Try this product:
Disable Right Click (https://vborg.vbsupport.ru/showthread.php?t=324872)
It requires no template hacking, and it works with Chrome. :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.