How To Disable Right click & F12 Key on a Website:
Hello, WordPress beginners are you worried about that your good quality content can be copied from your website?
who don't want to secure their website to make its content fresh and unique well if you want nobody to copy your content from your website then read this article till the end.
in this article, we will discuss how we can protect our website content from being copied by others so that Google gives us the good authority to our website..
Usually, there are two ways we can protect our content from being copied from the different browsers like Google Chrome. Mozilla Firefox. Internet Explore.r and some other browsers.
1: Disable F12 Function key:
Most of the users press F12 key when they are on any age and they can see the source code of the page, web website and they can also Steal the ideas, they can also copy the content from the page.
We have given some piece of codes that you need to implement with your website,

Procedure.
Open your WordPress dashboard, go to appearance, click editor and find header.php file from the right panel and paste the below-given code under the head section </head >.
You are done now your website is secure from pressing F12 key.
2.Disable right click:
Ok, disabling F12 key function is not enough to protect the website and its contents from being copied. There is another way that user can open the source code for the website by right-clicking on the page and using inspect element option, and the source code option so that's also one of the bleeding injuries for the users.
Disabling right click option will not let the user to right click on the whole website because it prevents from click right.
Procedure.
first of all we need we have to install a plugin "WP Content Copy Protection & No Right Click" which you can easily find in the plugin and add new install the plugin and activate the plugin as soon as you have activated the plugin it will do the rest for the whole website there are a premium features of this plugin if you wish you can purchase them too.
we wish this article was helpful for you to easily disable right click and F12 if function key on the website. if you had any problem during the procedure you can easily ask your questions in the comment box and get your answer.
if you like this article then please share this idea with you your social networking Facebook Twitter and Instagram.
Hello, WordPress beginners are you worried about that your good quality content can be copied from your website?
who don't want to secure their website to make its content fresh and unique well if you want nobody to copy your content from your website then read this article till the end.

Usually, there are two ways we can protect our content from being copied from the different browsers like Google Chrome. Mozilla Firefox. Internet Explore.r and some other browsers.
1: Disable F12 Function key:
Most of the users press F12 key when they are on any age and they can see the source code of the page, web website and they can also Steal the ideas, they can also copy the content from the page.
We have given some piece of codes that you need to implement with your website,

Procedure.
Open your WordPress dashboard, go to appearance, click editor and find header.php file from the right panel and paste the below-given code under the head section </head >.
You are done now your website is secure from pressing F12 key.
document.onkeypress = function (event) {
event = (event || window.event);
if (event.keyCode == 123) {
//alert('No F-12');
return false;
}
}
document.onmousedown = function (event) {
event = (event || window.event);
if (event.keyCode == 123) {
//alert('No F-keys');
return false;
}
}
document.onkeydown = function (event) {
event = (event || window.event);
if (event.keyCode == 123) {
//alert('No F-keys');
return false;
}
}
2.Disable right click:
Ok, disabling F12 key function is not enough to protect the website and its contents from being copied. There is another way that user can open the source code for the website by right-clicking on the page and using inspect element option, and the source code option so that's also one of the bleeding injuries for the users.

Disabling right click option will not let the user to right click on the whole website because it prevents from click right.
Procedure.
first of all we need we have to install a plugin "WP Content Copy Protection & No Right Click" which you can easily find in the plugin and add new install the plugin and activate the plugin as soon as you have activated the plugin it will do the rest for the whole website there are a premium features of this plugin if you wish you can purchase them too.
we wish this article was helpful for you to easily disable right click and F12 if function key on the website. if you had any problem during the procedure you can easily ask your questions in the comment box and get your answer.
if you like this article then please share this idea with you your social networking Facebook Twitter and Instagram.
How To Disable Right click & F12 Key on a Website
4/
5
Oleh
NIYAMATULLA
1 comments:
Tulis comments[…] How To Disable Right click & F12 Key on a Website […]
Reply