404page – your smart custom 404 error page - Version 10.3

Version Description

fix for compatibility with iThemes Sync

Download this release

Release Info

Developer petersplugins
Plugin Icon 128x128 404page – your smart custom 404 error page
Version 10.3
Comparing to
See all releases

Code changes from version 10.2 to 10.3

Files changed (4) hide show
  1. 404page.php +1 -1
  2. inc/class-404page.php +2 -1
  3. loader.php +1 -1
  4. readme.txt +7 -1
404page.php CHANGED
@@ -9,7 +9,7 @@
9
  * Plugin Name: 404page - your smart custom 404 error page
10
  * Plugin URI: https://petersplugins.com/free-wordpress-plugins/404page/
11
  * Description: Custom 404 the easy way! Set any page as custom 404 error page. No coding needed. Works with (almost) every Theme.
12
- * Version: 10.2
13
  * Author: Peter Raschendorfer
14
  * Author URI: https://petersplugins.com
15
  * Text Domain: 404page
9
  * Plugin Name: 404page - your smart custom 404 error page
10
  * Plugin URI: https://petersplugins.com/free-wordpress-plugins/404page/
11
  * Description: Custom 404 the easy way! Set any page as custom 404 error page. No coding needed. Works with (almost) every Theme.
12
+ * Version: 10.3
13
  * Author: Peter Raschendorfer
14
  * Author URI: https://petersplugins.com
15
  * Text Domain: 404page
inc/class-404page.php CHANGED
@@ -277,10 +277,11 @@ if ( !class_exists( 'PP_404Page' ) ) {
277
 
278
  }
279
 
280
- if ( is_admin() ) {
281
 
282
  // load classes only if in admin
283
  // @since 10
 
284
 
285
  $this->admin = new PP_404Page_Admin( $this, $this->settings );
286
  $this->blockeditor = new PP_404Page_BlockEditor( $this );
277
 
278
  }
279
 
280
+ if ( class_exists( 'PP_404Page_Admin' ) ) {
281
 
282
  // load classes only if in admin
283
  // @since 10
284
+ // using class_exists( 'PP_404Page_Admin' ) instead of is_admin() as of v 10.3 for compatibilty with iThemes Sync
285
 
286
  $this->admin = new PP_404Page_Admin( $this, $this->settings );
287
  $this->blockeditor = new PP_404Page_BlockEditor( $this );
loader.php CHANGED
@@ -40,7 +40,7 @@ function pp_404page() {
40
  'file' => dirname( __FILE__ ) . '/404page.php',
41
  'slug' => pathinfo( dirname( __FILE__ ) . '/404page.php', PATHINFO_FILENAME ),
42
  'name' => '404page - your smart custom 404 error page',
43
- 'version' => '10.2'
44
  ) );
45
 
46
  }
40
  'file' => dirname( __FILE__ ) . '/404page.php',
41
  'slug' => pathinfo( dirname( __FILE__ ) . '/404page.php', PATHINFO_FILENAME ),
42
  'name' => '404page - your smart custom 404 error page',
43
+ 'version' => '10.3'
44
  ) );
45
 
46
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: petersplugins
3
  Tags: page, 404, error, error page, 404 page, page not found, page not found error, 404 error page, missing, broken link, template, 404 link, seo, custom 404, custom 404 page, custom 404 error, custom 404 error page, customize 404, customize 404 page, customize 404 error page
4
  Requires at least: 4.0
5
  Tested up to: 5.0
6
- Stable tag: 10.2
7
  Requires PHP: 5.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -152,6 +152,9 @@ Please use the [Support Forum](https://wordpress.org/support/plugin/404page).
152
 
153
  == Changelog ==
154
 
 
 
 
155
  = 10.2 (2019-02-19) =
156
  * just another small change to prevent from potential problems with version 10
157
 
@@ -275,6 +278,9 @@ Please use the [Support Forum](https://wordpress.org/support/plugin/404page).
275
 
276
  == Upgrade Notice ==
277
 
 
 
 
278
  = 10.2 =
279
  preventive fix
280
 
3
  Tags: page, 404, error, error page, 404 page, page not found, page not found error, 404 error page, missing, broken link, template, 404 link, seo, custom 404, custom 404 page, custom 404 error, custom 404 error page, customize 404, customize 404 page, customize 404 error page
4
  Requires at least: 4.0
5
  Tested up to: 5.0
6
+ Stable tag: 10.3
7
  Requires PHP: 5.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
152
 
153
  == Changelog ==
154
 
155
+ = 10.3 (2019-02-21) =
156
+ * fix for compatibility with iThemes Sync ([ticket](https://wordpress.org/support/topic/ithemes-sync-issue/))
157
+
158
  = 10.2 (2019-02-19) =
159
  * just another small change to prevent from potential problems with version 10
160
 
278
 
279
  == Upgrade Notice ==
280
 
281
+ = 10.3 =
282
+ fix for compatibility with iThemes Sync
283
+
284
  = 10.2 =
285
  preventive fix
286