Version Description
- Bug fix - error when deleting a page from the nested view with menu sync disabled
Download this release
Release Info
Developer | kylephillips |
Plugin | Nested Pages |
Version | 1.3.9 |
Comparing to | |
See all releases |
Code changes from version 1.3.8 to 1.3.9
- app/Entities/Post/PostTrashActions.php +1 -0
- app/NestedPages.php +1 -1
- nestedpages.php +1 -1
- readme.txt +8 -2
app/Entities/Post/PostTrashActions.php
CHANGED
@@ -39,6 +39,7 @@ class PostTrashActions {
|
|
39 |
{
|
40 |
$post_type = get_post_type($post_id);
|
41 |
$this->resetToggles($post_id, $post_type);
|
|
|
42 |
$this->removeNavMenuItem($post_id);
|
43 |
if ( $post_type == 'page' ){
|
44 |
$sync = new NavMenuSyncListing;
|
39 |
{
|
40 |
$post_type = get_post_type($post_id);
|
41 |
$this->resetToggles($post_id, $post_type);
|
42 |
+
if ( get_option('nestedpages_menusync') !== 'sync' ) return;
|
43 |
$this->removeNavMenuItem($post_id);
|
44 |
if ( $post_type == 'page' ){
|
45 |
$sync = new NavMenuSyncListing;
|
app/NestedPages.php
CHANGED
@@ -12,7 +12,7 @@ class NestedPages {
|
|
12 |
$np_env = 'live';
|
13 |
|
14 |
global $np_version;
|
15 |
-
$np_version = '1.3.
|
16 |
|
17 |
if ( is_admin() ) $app = new NestedPages\Bootstrap;
|
18 |
}
|
12 |
$np_env = 'live';
|
13 |
|
14 |
global $np_version;
|
15 |
+
$np_version = '1.3.9';
|
16 |
|
17 |
if ( is_admin() ) $app = new NestedPages\Bootstrap;
|
18 |
}
|
nestedpages.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Nested Pages
|
4 |
Plugin URI: http://nestedpages.com
|
5 |
Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while maintaining quick edit functionality.
|
6 |
-
Version: 1.3.
|
7 |
Author: Kyle Phillips
|
8 |
Author URI: https://github.com/kylephillips
|
9 |
Text Domain: nestedpages
|
3 |
Plugin Name: Nested Pages
|
4 |
Plugin URI: http://nestedpages.com
|
5 |
Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while maintaining quick edit functionality.
|
6 |
+
Version: 1.3.9
|
7 |
Author: Kyle Phillips
|
8 |
Author URI: https://github.com/kylephillips
|
9 |
Text Domain: nestedpages
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://nestedpages.com/
|
|
4 |
Tags: pages, admin, nested, tree view, page tree, sort, quick edit, structure
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 1.3.
|
8 |
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -51,7 +51,10 @@ For more information visit [nestedpages.com](http://nestedpages.com).
|
|
51 |
= Can I use Nested Pages with other post types? =
|
52 |
As of Nested Pages version 1.3.0, all post types are supported. To enable the Nested Pages interface for post types, update your settings under Settings > Nested Pages.
|
53 |
|
54 |
-
=
|
|
|
|
|
|
|
55 |
Click the “Default link in the page subnav, or on the Nested Pages screen. This item may be optionally hidden under the Nested Pages settings.
|
56 |
|
57 |
= How do I save the order I create? =
|
@@ -85,6 +88,9 @@ If you have WordPress SEO by Yoast installed, your page score indicators are sho
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
88 |
= 1.3.8 =
|
89 |
* Bug fix – Critical error that was overriding existing menu items outside of the Nested Pages generated menu. Other menus are now unaltered on save.
|
90 |
|
4 |
Tags: pages, admin, nested, tree view, page tree, sort, quick edit, structure
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 1.3.8
|
8 |
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
51 |
= Can I use Nested Pages with other post types? =
|
52 |
As of Nested Pages version 1.3.0, all post types are supported. To enable the Nested Pages interface for post types, update your settings under Settings > Nested Pages.
|
53 |
|
54 |
+
= Is this plugin compatible with the WPML plugin? =
|
55 |
+
Nested Pages is not currently compatible with WPML.
|
56 |
+
|
57 |
+
= How do I access the WordPress "Pages" screen? =
|
58 |
Click the “Default link in the page subnav, or on the Nested Pages screen. This item may be optionally hidden under the Nested Pages settings.
|
59 |
|
60 |
= How do I save the order I create? =
|
88 |
|
89 |
== Changelog ==
|
90 |
|
91 |
+
= 1.3.9 =
|
92 |
+
* Bug fix - error when deleting a page from the nested view with menu sync disabled
|
93 |
+
|
94 |
= 1.3.8 =
|
95 |
* Bug fix – Critical error that was overriding existing menu items outside of the Nested Pages generated menu. Other menus are now unaltered on save.
|
96 |
|