Changeset 903404
- Timestamp:
- 04/27/2014 09:45:35 AM (12 years ago)
- Location:
- advanced-page-manager/trunk
- Files:
-
- 6 edited
-
advanced_page_manager.php (modified) (2 diffs)
-
lib/constants.php (modified) (1 diff)
-
lib/tree_data.php (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
-
templates/panel_page/browse.php (modified) (1 diff)
-
templates/panel_page/common.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-page-manager/trunk/advanced_page_manager.php
r815964 r903404 3 3 * Plugin Name: Advanced Page Manager 4 4 * Description: A plugin that redefines the way you create, move, edit and publish your pages. 5 * Version: 1. 25 * Version: 1.3 6 6 * Author: Uncategorized Creations 7 7 * Plugin URI: http://www.uncategorized-creations.com/ … … 239 239 global $pagenow, $typenow, $plugin_page; 240 240 241 //Compatibility with Visual Composer 242 if( isset($_GET['vc_action']) ){ 243 return; 244 } 245 241 246 if( $pagenow == 'post-new.php' && $typenow == 'page' ){ 242 247 //Redirect "New page" to our "All pages" panel : -
advanced-page-manager/trunk/lib/constants.php
r815964 r903404 3 3 class ApmConstants{ 4 4 5 const resources_version = '1. 2';5 const resources_version = '1.3'; 6 6 7 7 public static $wp_status_map = array(-1=>'auto-draft', -
advanced-page-manager/trunk/lib/tree_data.php
r815964 r903404 977 977 remove_filter('default_title', $callback); 978 978 979 //Fix very strange bug related to $post->post_category not being an array. 980 // > warning in wp-includes/post.php line 2755 : 981 if( isset($post->post_category) && !empty($post->post_category) && !is_array($post->post_category) ){ 982 $post->post_category = array($post->post_category); 983 } 984 979 985 $new_page_id = wp_insert_post((array)$post); 980 986 -
advanced-page-manager/trunk/readme.txt
r815964 r903404 3 3 Tags: pages, page, manage, management, page management, tree, rearrange, order, reorder, hierarchical, admin, cms, content management, addon 4 4 Requires at least: 3.4.2 5 Tested up to: 3. 7.16 Stable tag: 1. 25 Tested up to: 3.9 6 Stable tag: 1.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 19 19 20 20 = So, what should you expect from this plugin ? = 21 22 **NEW** We have begun to release addons for Advanced Page Manager ! Well, there is only one :-) It allows to add a sortable Last modified column in panels.23 21 24 22 * **An easy understand tree.** All your pages are presented in an easy to understand tree with all necessary actions to take care of them. … … 91 89 92 90 = Which version of Wordpress do you support ? = 93 We support Wordpress 3.4.2 , 3.5 up to the 3.7.1. We don't plan to support earlier versions.91 We support Wordpress 3.4.2 to the 3.9. We don't plan to support earlier versions. 94 92 95 93 = Which version of browsers do you support ? = … … 117 115 118 116 == Changelog == 117 118 = 1.3 = 119 * WordPress 3.8 and 3.9 support 120 * 0000075: Target radio buttons overlap in Add New side panel 121 * 0000074: Since 3.8x, slide-out menu appears under page tree 122 * 0000073: Add a new page, working.., manually refreshing page before I can access new page 123 * 0000065: Creating a page when multisites enabled raises warnings 119 124 120 125 = 1.2 = -
advanced-page-manager/trunk/templates/panel_page/browse.php
r654531 r903404 127 127 </div> 128 128 </div> 129 <div style="float:left; width: 80%; z-index: 100; position:relative;">129 <div style="float:left; width: 80%; z-index:auto; position:relative;"> 130 130 131 131 <!-- TODO : drop this code if bug confirmed solved --> -
advanced-page-manager/trunk/templates/panel_page/common.css
r654531 r903404 139 139 .panel-count-page-checked{color: red; font-weight:900} 140 140 #add-page-model{width: 100%} 141 #position-radio-button input[type=radio]{margin:3px} 141 142 142 143 #left-panels-wrapper{position:relative} … … 151 152 .postbox{padding: 5px; margin-top: 0px; min-width:100px; width:225px; } 152 153 .postbox .hndle{cursor: default;} 154 .js .postbox .hndle{cursor: default;} 153 155 .display-count-page-checked{background: #e4e4e4; padding: 5px; font-weight: 900} 154 156 .label-template-list, .label-current-template{margin-bottom: 3px; font-weight: 900}
Note: See TracChangeset
for help on using the changeset viewer.