Plugin: BuddyPress Group Email Subscription

Join this plugin group to follow comments, support topics and reviews.

3.3 compatibility (4 posts)

Started 6 months, 2 weeks ago by: sboisvert

  • Profile picture of sboisvert sboisvert said 6 months, 2 weeks ago:

    I might be wrongly diagnosing this, But I thought I might as well leave this note for anyone else who might come across it. While using 3.3 Beta 2, I had to change :
    add_action( ‘wp’, ‘ass_update_group_subscribe_settings’, 4 );
    to:
    add_action( ‘wp’, ‘ass_update_group_subscribe_settings’, 3 );
    If not your changes did not get saved. Again take this with a grain of salt, I didn’t try it on a clean 3.3 beta 2 install with nothing else running. so its more of a, if you have this problem, try this solution kind of post.

  • Profile picture of Boone Gorges Boone Gorges said 6 months, 2 weeks ago:

    Good point. You can avoid the whole issue by switching the hook from ‘wp’ to ‘bp_actions’ (assuming you’re running BP 1.5+).

  • Profile picture of sboisvert sboisvert said 6 months, 2 weeks ago:

    Perfect, I wasn’t sure exactly of the order and what is the preference of what to use. I found 5 instance of ‘wp’ used in actions, do you want me to submit an svn diff or is it just as easy for you to do it yourself since you’re maintaining the plugin?

  • Profile picture of Boone Gorges Boone Gorges said 6 months, 2 weeks ago:

    It’s easy for me to do. I need to find a decent backward compatible way to do it, anyway. Thanks though!