• If you update WordPress to 3.1 and Buddypress to 1.2.8 and use multi_site this will no longer work because Buddypress uses 3.1’s new network_admin dashboard. A quick change to line 30 of bps-main.php will fix this problem.
    Find the following line:

    add_action ('admin_menu', 'bps_add_pages', 20);

    And replace it with this:

    #add_action ('admin_menu', 'bps_add_pages', 20);
    add_action( is_multisite() ? 'network_admin_menu' : 'admin_menu', 'bps_add_pages', 20 );

    This will allow the plugin to work with multisite enabled.

    http://wordpress.org/extend/plugins/bp-profile-search/

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: BP Profile Search] Quick Fix for WP 3.1’ is closed to new replies.