Disable Right Click
Introduction to Disable Right Click WordPress Plugin
Master Blogster Disable right click plugin prevents right click on your WordPress website and blog which avoids copying website content and source code up to some extent. Disable right click restricts users or hackers from viewing your source code with right click and disables people from copying content.
Features of Disable Right Click WP Plugin
- Helps you reduce content theft since users won’t be able to right click to copy.
- This plugin uses WordPress built-in jQuery so no compromise on speed.
- Lets you hide source code, hence your coding is not visible with “right click>>view source”. (Although they can still view manually by clicking on menu or by typing the source address) But you can still discourage it for rest of the users who are not very tech savvy. But still it covers a great percentage.
- Disable right click plugin uses cool jQuery UI dialog box
- This plugin has no settings page, simply activate it and start using it. No configuration required.
Download Disable Right Click
[dl url=”http://wordpress.org/plugins/disable-right-click” title=”Download” desc=”” type=”” align=””]
Happy WordPressing!
8 Comments
A very useful plugin to prevent content theft to some extent. Thanks for sharing 🙂
Thank you Pijush.. 🙂
Thank you so much for sharing this great tool !
I am an Artist and I greatly appreciate your kindness in making this available to people as a free download.
Your kindness will not be forgotten.
Stay Happy ! …Think Happy Thoughts !
Good plugin which you mentioned
Thank you 🙂
Is there a way stop the plugin running on certain pages?
I have another plugin on one page that need a right click to activate.
(I know how to edit the php, so it its a case of entering a couple of lines of code I can do that).
Thanks,
Graeme.
Hello Graeme,
Yes, It is possible to stop the disable right click plugin on certain pages. You can use is_page() conditional tag to exclude the pages. Just use this tag in load_jquery_for_mb_no_right_click() function. Below is the sample code to exclude contact page (using page slug).
function load_jquery_for_mb_no_right_click() {
if(! is_page( 'contact-us' )){
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-dialog');
wp_register_script('mb_no_right_click_js',plugins_url( 'disable-right-click-js.js' , __FILE__ ),array( 'jquery' ));
wp_enqueue_script('mb_no_right_click_js');
wp_register_style( 'mb_jquery_ui_modal_box', plugins_url('jquery-ui.css', __FILE__) );
wp_enqueue_style( 'mb_jquery_ui_modal_box' );
}
}
You can also exclude the array of pages with the code as follows
is_page( array( 'contact-us', 'about-me', 'gallery' ) );
I hope it helped you.
Thank you for dropping by 🙂
Thanx For this Awesome wordpress plugin. This plugin is very helpful for my blog.