Re: BP plugins multisite menu fix?
Is this topic resolved or still an issue. Sorry, I could not follow up.
The problem is if a plugin is using register_setting and asks the options.php to save plugin data. It will be broken in the multisite. The problem is most authors leave the the plugin option menu registering code and setting register code in same function. so if you change the admin_menu to network_admin_menu, the settings will not be registered and you will have trouble.
Look for the code which registers setting and hook it to admin_menu, then change the form action from options.php to echo admin_url(“options.php”);//yes, I am writing it admin_url.
and then you can try saving the data. the data should be saved.