• Resolved wpexplorer

    (@wpexplorer)


    In order for the plugin to work on my multisite install I had to change:

    function bpdd_get_root_admin_page() {
        return is_multisite() ? 'settings.php' : 'tools.php';
    }

    to

    function bpdd_get_root_admin_page() {
         return is_multisite() ? 'options-general.php' : 'tools.php';
    }

    in bp-default-data/helpers.php

    Just incase anyone else is having issues.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Multisite Issue’ is closed to new replies.