Fatal error: Call to undefined function is_plugin_active() in /home/XXXXXX/public_html/wp-content/plugins/simple-press/sp-api/sp-api-common-display.php on line 427
I am getting something like this error too when I load the “forurms” page via wordpress
I have buddypress installed.
The line in question is
function sp_build_profile_formlink($userid) {
global $spThisUser;
$sfprofile = sp_get_option(‘sfprofile’);
$mode = $sfprofile[‘formmode’];
# if profile mode is BP or Mingle but they are not active, switch back to popup profile
// LINE 427 is here—->
if (($mode == 3 && !is_plugin_active(‘buddypress/bp-loader.php’)) || ($mode == 5 && !is_plugin_active(‘mingle/mingle.php’))) {
$mode = 1;
}
switch ($mode) {

