How to disable right mouse click

If you want to disable the right mouse click (context menu) from your website you can add this code snippet into Theme options > Layout > Advanced > Custom JS (in footer):

window.onload = function() {
    document.addEventListener("contextmenu", function(e){
      e.preventDefault();
    }, false);
};
pixfort
pixfort
Essentials support team
hub.pixfort.com

Hey, this is pixfort support team, if you still need help you can always reach us via the chat messenger in your account on pixfort hub

Related Posts