Skip to:
Content
Pages
Categories
Search
Top
Bottom

legacy plugin workarounds for 1.0


  • _ck_
    Participant

    @_ck_

    I’ll post easy workarounds here for 1.0 as I figure them out.

    Don’t assume a workaround makes a plugin compatible, it may only appear to be visible or work in general while it fails behind the scenes. Always backup first.

Viewing 1 replies (of 1 total)

  • _ck_
    Participant

    @_ck_

    Some plugins attach to the “Manage” admin menu, which was skipped over in 1.0

    This will emulate the slot so the plugins become visible again.

    (do not click “Manage” directly or you’ll get a 404, unfortunately it has to be that way because of how 1.0 was changed)

    <?php
    /*
    Plugin Name: Legacy Plugin Fixes
    */

    add_action('bb_admin_menu_generator', 'admin_manage_menu', 1);
    function admin_manage_menu() {global $bb_menu; $bb_menu[165] = array( __( 'Manage'), 'moderate', 'content.php', 'bb-menu-manage' );}

    ?>

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar