How to Disable right click in Xenforo 2

Hadia

Moderator
Staff member
VIP Member
Email Verified
Is there any way to disable right click and F12 in xenforo? I just want it disabled for guests only.
 
Here is what I found.

Goto Admin Control Panel > Appearance > Templates > edit "PAGE_CONTAINER"

Paste this code at the end, just before the "</xf:macro>" tag.

Code:
<xf:if is="!{$xf.visitor.user_id}">
<script type="text/javascript">
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="You need to login to right click";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>
</xf:if>
 
Top