Viewing 4 replies - 1 through 4 (of 4 total)
  • i went to the plugin page, clicked on Download Version 1.0.3, got a .zip file downloaded, double-clicked on the file and got the directory. there’s not much there: just a readme.txt file and a category-order.php file. the plugin works fine, by the way!

    There is problems with registering menus.

    Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in WP\functions.php on line 2712

    Notice is displayed when in Debug mode.

    [ Moderator Note: Please post code or markup snippets between backticks or use the code button. Or better still – use the pastebin ]

    true. the original poster got a corrupted .zip file. i downloaded the .zip and it extracted fine.

    with respect to “the plugin works fine”, you’re right: the key change to make is this:

    function wpguy_category_order_menu(){
                    if (function_exists('add_submenu_page')) {
    -                       add_submenu_page("edit.php", 'Category Order', 'Category
     Order', 4, "wpguy_category_order_options", 'wpguy_category_order_options');
    +                       add_submenu_page("edit.php", 'Category Order', 'Category
     Order', 'manage_categories', "wpguy_category_order_options", 'wpguy_category_or
    der_options');
                    }
    -       }

    if you want the plugin to work with categories for things other than posts, then there is a little more work to do…

    Anonymous User 11480689

    (@anonymized-11480689)

    it work for me!
    wp 3.5.1

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Category Order] Broken category order plugin’ is closed to new replies.