Plugin Directory

Changeset 903404


Ignore:
Timestamp:
04/27/2014 09:45:35 AM (12 years ago)
Author:
Uncategorized Creations
Message:

Release 1.3

Location:
advanced-page-manager/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • advanced-page-manager/trunk/advanced_page_manager.php

    r815964 r903404  
    33 * Plugin Name: Advanced Page Manager
    44 * Description: A plugin that redefines the way you create, move, edit and publish your pages. 
    5  * Version: 1.2
     5 * Version: 1.3
    66 * Author: Uncategorized Creations
    77 * Plugin URI: http://www.uncategorized-creations.com/
     
    239239        global $pagenow, $typenow, $plugin_page;
    240240       
     241        //Compatibility with Visual Composer
     242        if( isset($_GET['vc_action']) ){
     243            return;
     244        }
     245       
    241246        if( $pagenow == 'post-new.php' && $typenow == 'page' ){
    242247            //Redirect "New page" to our "All pages" panel :
  • advanced-page-manager/trunk/lib/constants.php

    r815964 r903404  
    33class ApmConstants{
    44   
    5     const resources_version = '1.2';
     5    const resources_version = '1.3';
    66                                           
    77    public static $wp_status_map = array(-1=>'auto-draft',
  • advanced-page-manager/trunk/lib/tree_data.php

    r815964 r903404  
    977977        remove_filter('default_title', $callback);
    978978       
     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       
    979985        $new_page_id = wp_insert_post((array)$post);
    980986       
  • advanced-page-manager/trunk/readme.txt

    r815964 r903404  
    33Tags: pages, page, manage, management, page management, tree, rearrange, order, reorder, hierarchical, admin, cms, content management, addon
    44Requires at least: 3.4.2
    5 Tested up to: 3.7.1
    6 Stable tag: 1.2
     5Tested up to: 3.9
     6Stable tag: 1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1919
    2020= 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.
    2321
    2422* **An easy understand tree.** All your pages are presented in an easy to understand tree with all necessary actions to take care of them.
     
    9189
    9290= 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.
     91We support Wordpress 3.4.2 to the 3.9. We don't plan to support earlier versions.
    9492
    9593= Which version of browsers do you support ? =
     
    117115
    118116== 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
    119124
    120125= 1.2 =
  • advanced-page-manager/trunk/templates/panel_page/browse.php

    r654531 r903404  
    127127        </div>
    128128    </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;">
    130130       
    131131        <!-- TODO : drop this code if bug confirmed solved -->
  • advanced-page-manager/trunk/templates/panel_page/common.css

    r654531 r903404  
    139139.panel-count-page-checked{color: red; font-weight:900}
    140140#add-page-model{width: 100%}
     141#position-radio-button input[type=radio]{margin:3px}
    141142
    142143#left-panels-wrapper{position:relative}
     
    151152.postbox{padding: 5px; margin-top: 0px; min-width:100px; width:225px; }
    152153.postbox .hndle{cursor: default;}
     154.js .postbox .hndle{cursor: default;}
    153155.display-count-page-checked{background: #e4e4e4; padding: 5px; font-weight: 900}
    154156.label-template-list, .label-current-template{margin-bottom: 3px; font-weight: 900}
Note: See TracChangeset for help on using the changeset viewer.