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.
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.
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' );}
?>You must log in to post.