@feedmymedia I have it working in 1.5 without any problems – it sounds like you might have a javascript issue somewhere which is causing the options to be visible rather than hidden
The plugin works fine on all my installations of BP 1.5.x. @ewebber is probably right that something is causing your JS not to load. Sometimes this happens because you are manually defining BP_VERSION and doing it incorrectly; try putting
`define( ‘BP_VERSION’, ’1.5.1′ );`
into your wp-config.php.
If that doesn’t work, you could try this http://wordpress.org/support/topic/plugin-buddypress-group-email-subscription-subscription-status-and-options-are-shown-in-the-groups-listing-and-description#post-2472611
Thanks for the replies. define( ‘BP_VERSION’, ’1.5.1′ ); didn’t work, but i checked out the other thread, and following the advise within solved my problem.
I moved:
`if ( defined( ‘BP_VERSION’ ) && version_compare( BP_VERSION, ’1.5-beta-1′, ‘<' ) ) {
// Pre-1.5 versions of BuddyPress
// Load the abstraction files, which define the necessary 1.5 functions
require_once( dirname( __FILE__ ) . ‘/1.5-abstraction.php’ );
// Load the group extension in the legacy fashion
add_action( ‘init’, ‘ass_activate_extension’ );
} else {
// Load the group extension in the proper fashion
bp_register_group_extension( ‘Group_Activity_Subscription’ );
}`
to the very bottom of the template bp-activity-subscription-main.php, and the js now loads fine.
This seemed to resolve yannlossouarn’s (from the other thread) problem too. Any chance of a patch with this minor change in it? I’ve updated my copy of the plugin, but will lose the change when next there is an update.
awesome, great fix thanks.
I can confirm this “fix” worked for me to on bp 1.5.1