Viewing 2 replies - 1 through 2 (of 2 total)
  • ninkyphx

    (@ninkyphx)

    I also had to disable it, I had the same thing happen. A white screen instead of a site. Child theme of buddypress default.

    http://wordpress.org/extend/plugins/buddypress-follow-me/

    Plugin Author meg@info

    (@megainfo)

    Hi @ninkyphx, @dcsenterprise,

    I was fix the bug and i was update plugin to 1.2.1, just wait the update appear in wordpress repo,

    else if you want update your installed plugin code, just change the function bp_follow_is_bp_default() in the file
    bp-follow-functions.php with this code :

    function bp_follow_is_bp_default() {
        // if active theme is BP Default or a child theme, then we return true
        // as i was afraid a BuddyPress theme that is not relying on BP Default might
        // be active, i added a BuddyPress version check.
        // I imagine that once version 1.7 will be released, this case will disappear.
        /*
        if( in_array( 'bp-default', array( get_stylesheet(), get_template() ) ) || ( defined( 'BP_VERSION' ) && version_compare( BP_VERSION, '1.6', '>' ) ) )
            return true;
        else
            return false;
        */
        // if active theme is BP Default or a child theme, then we return true
     	// If the Buddypress version  is < 1.7, then return true too
       if(current_theme_supports('buddypress') || in_array( 'bp-default', array( get_stylesheet(), get_template() ) )  || ( defined( 'BP_VERSION' ) && version_compare( BP_VERSION, '1.7', '<' ) ))
       		return true;
       else
       		return false;
    }

    Regards,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Upgrade broke site’ is closed to new replies.