Version Description
Download this release
Release Info
Developer | dave.ligthart |
Plugin | WP-Copyright-Protection |
Version | 1.6 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.6
- assets/icon-128x128.png +0 -0
- assets/icon-256x256.png +0 -0
- readme.txt +8 -4
- wp-copyright-protection.php +6 -2
assets/icon-128x128.png
ADDED
Binary file
|
assets/icon-256x256.png
ADDED
Binary file
|
readme.txt
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
=== WP-Copyright-Protection ===
|
2 |
Contributors: dave.ligthart
|
3 |
Donate link: https://trivetechnology.com
|
4 |
-
Tags: copyright,protection,copy,protect
|
5 |
Requires at least: 2.3
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.
|
8 |
-
|
9 |
|
10 |
Simple copyright protection for your images and text.
|
11 |
|
@@ -53,3 +52,8 @@ Fixed Firefox dropdown issue.
|
|
53 |
= Version 1.5 =
|
54 |
|
55 |
Compatibility fixes
|
|
|
|
|
|
|
|
|
|
1 |
=== WP-Copyright-Protection ===
|
2 |
Contributors: dave.ligthart
|
3 |
Donate link: https://trivetechnology.com
|
4 |
+
Tags: copyright,protection,no right click,content protection,image protection,copy,protect
|
5 |
Requires at least: 2.3
|
6 |
+
Tested up to: 5.2.2
|
7 |
+
Stable tag: 1.6
|
|
|
8 |
|
9 |
Simple copyright protection for your images and text.
|
10 |
|
52 |
= Version 1.5 =
|
53 |
|
54 |
Compatibility fixes
|
55 |
+
|
56 |
+
= Version 1.6 =
|
57 |
+
|
58 |
+
Tested: WordPress version: 5.2.2, compatible
|
59 |
+
Fixed filling of the form fields in iOS
|
wp-copyright-protection.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP-Copyright-Protection
|
|
4 |
Plugin URI: https://github.com/dligthart/wp-copyright-protection
|
5 |
Description: A simple way to add copyright protection to your website. Disables text copy, image copy and breaks out of iframe.
|
6 |
Author: dave.ligthart
|
7 |
-
Version: 1.
|
8 |
Author URI: https://www.trivetechnology.com
|
9 |
*/
|
10 |
|
@@ -14,7 +14,7 @@ Author URI: https://www.trivetechnology.com
|
|
14 |
* @author Trive.amsterdam
|
15 |
* @package wpcp
|
16 |
* @subpackage core
|
17 |
-
* @version 1.
|
18 |
*/
|
19 |
|
20 |
/** Back-End **/
|
@@ -200,6 +200,10 @@ function wp_copyright_protection()
|
|
200 |
user-select: none;
|
201 |
}
|
202 |
|
|
|
|
|
|
|
|
|
203 |
</style>
|
204 |
<!-- End Copyright protection script -->
|
205 |
|
4 |
Plugin URI: https://github.com/dligthart/wp-copyright-protection
|
5 |
Description: A simple way to add copyright protection to your website. Disables text copy, image copy and breaks out of iframe.
|
6 |
Author: dave.ligthart
|
7 |
+
Version: 1.6
|
8 |
Author URI: https://www.trivetechnology.com
|
9 |
*/
|
10 |
|
14 |
* @author Trive.amsterdam
|
15 |
* @package wpcp
|
16 |
* @subpackage core
|
17 |
+
* @version 1.6
|
18 |
*/
|
19 |
|
20 |
/** Back-End **/
|
200 |
user-select: none;
|
201 |
}
|
202 |
|
203 |
+
input, textarea, select {
|
204 |
+
-webkit-user-select: auto;
|
205 |
+
}
|
206 |
+
|
207 |
</style>
|
208 |
<!-- End Copyright protection script -->
|
209 |
|