Version Description
- Fix for flyout menu not working
Download this release
Release Info
Developer | eskapism |
Plugin | Admin Menu Tree Page View |
Version | 2.4 |
Comparing to | |
See all releases |
Code changes from version 2.3 to 2.4
- css/styles.css +6 -1
- index.php +2 -2
- readme.txt +4 -1
css/styles.css
CHANGED
@@ -597,4 +597,9 @@ ul.amtpv-editpopup-addpages-names-ul .ui-state-highlight {
|
|
597 |
left: 0;
|
598 |
top: 5px;
|
599 |
background: transparent url(https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/themes/ui-darkness/images/ui-icons_222222_256x240.png) no-repeat -5px -228px;
|
600 |
-
}
|
|
|
|
|
|
|
|
|
|
597 |
left: 0;
|
598 |
top: 5px;
|
599 |
background: transparent url(https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/themes/ui-darkness/images/ui-icons_222222_256x240.png) no-repeat -5px -228px;
|
600 |
+
}
|
601 |
+
|
602 |
+
/* fix from wordpress.org/support/topic/plugin-admin-menu-tree-page-view-flyout-menus-broken-in-wp-33 */
|
603 |
+
#adminmenuwrap #adminmenu #menu-pages .wp-submenu {
|
604 |
+
overflow: visible !important;
|
605 |
+
}
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Admin Menu Tree Page View
|
4 |
Plugin URI: http://eskapism.se/code-playground/admin-menu-tree-page-view/
|
5 |
Description: Get a tree view of all your pages directly in the admin menu. Search, edit, view and add pages - all with just one click away!
|
6 |
-
Version: 2.
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
@@ -38,7 +38,7 @@ add_action('wp_ajax_admin_menu_tree_page_view_move_page', 'admin_menu_tree_page_
|
|
38 |
|
39 |
function admin_menu_tree_page_view_admin_init() {
|
40 |
|
41 |
-
define( "admin_menu_tree_page_view_VERSION", "2.
|
42 |
define( "admin_menu_tree_page_view_URL", WP_PLUGIN_URL . '/admin-menu-tree-page-view/' );
|
43 |
define( "admin_menu_tree_page_view_DIR", WP_PLUGIN_DIR . '/admin-menu-tree-page-view/' );
|
44 |
|
3 |
Plugin Name: Admin Menu Tree Page View
|
4 |
Plugin URI: http://eskapism.se/code-playground/admin-menu-tree-page-view/
|
5 |
Description: Get a tree view of all your pages directly in the admin menu. Search, edit, view and add pages - all with just one click away!
|
6 |
+
Version: 2.4
|
7 |
Author: Pär Thernström
|
8 |
Author URI: http://eskapism.se/
|
9 |
License: GPL2
|
38 |
|
39 |
function admin_menu_tree_page_view_admin_init() {
|
40 |
|
41 |
+
define( "admin_menu_tree_page_view_VERSION", "2.4" );
|
42 |
define( "admin_menu_tree_page_view_URL", WP_PLUGIN_URL . '/admin-menu-tree-page-view/' );
|
43 |
define( "admin_menu_tree_page_view_DIR", WP_PLUGIN_DIR . '/admin-menu-tree-page-view/' );
|
44 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
|
|
4 |
Tags: admin, page, pages, tree, view, admin menu, menu
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3
|
7 |
-
Stable tag: 2.
|
8 |
|
9 |
Get a tree view of all your pages directly in the admin menu. Search, edit, view, re-order/sort and add pages - all with just one click away!
|
10 |
|
@@ -42,6 +42,9 @@ Now the tree with the pages will be visible in the admin menu to the left.
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
45 |
= 2.3 =
|
46 |
- Fixed: major speedup, like 300 % faster generation of the tree
|
47 |
- Fixed: added is_admin()-check to the plugin, the plugin code is only parsed when in the administration panel. This could make the public part of your site some milliseconds faster.
|
4 |
Tags: admin, page, pages, tree, view, admin menu, menu
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 2.4
|
8 |
|
9 |
Get a tree view of all your pages directly in the admin menu. Search, edit, view, re-order/sort and add pages - all with just one click away!
|
10 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
45 |
+
= 2.4 =
|
46 |
+
- Fix for flyout menu not working
|
47 |
+
|
48 |
= 2.3 =
|
49 |
- Fixed: major speedup, like 300 % faster generation of the tree
|
50 |
- Fixed: added is_admin()-check to the plugin, the plugin code is only parsed when in the administration panel. This could make the public part of your site some milliseconds faster.
|