Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Dwenaus

    (@dwenaus)

    what is not showing up at all? the forums? is this related to the Plugin or to buddypress itself?

    Thread Starter studioleland

    (@studioleland)

    Once activated I am not seeing any of the BuddyPress Group Email Subscription panels showing up in the BP 1.3 forums settings. Also not seeing any of the options to follow posts, etc. This was working nicely in the 1.2x but now in 1.3 the hook is missing? Not sure. Would love to get this resolved. Anyone tested this?

    Plugin Author Boone Gorges

    (@boonebgorges)

    It’s because the way that the plugin currently loads itself (function activitysub_load_buddypress() in bp-activity-subscription.php) is outdated. If I update it to the current method, it will break backward compatibility with BP < 1.2. Since BP 1.3 is not out yet, I am not anxious to do that at the moment. But here’s the fix:

    function activitysub_load_buddypress_13() {
    	if ( !bp_is_active( 'groups' ) || !bp_is_active( 'activity' ) )
    		return false;
    
    	require_once ('bp-activity-subscription-main.php');
    }
    add_action( 'bp_include', 'activitysub_load_buddypress_13' );

    I am also trying to get this to show up on my front end. Where do I place the fix above?

    Can someone share the URL of the settings page? If the plugin can’t place the tabs, I’d like to access them directly as an admin to set the settings that way.

    Thanks!

    ive tried adding the code from Boone Gorges to (replace) line 33 of bp-activity-subscription.php but I just get errors. Anyone have a fix for this?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Not showing up at ALL in buddypress 1.3 forums’ is closed to new replies.