@adambware
8 years ago
Bumping this.. Does anybody know where this access check and redirect takes place?
12 years, 1 month ago
I see that the bp_uri filter is run before handling $_GET variables.. Might this help me accomplish my goal here?
12 years, 6 months ago
Could this be related to this ticket?
https://buddypress.trac.wordpress.org/ticket/3727
First time posting, let me make those plugin steps a little easier to read…
1) checks BuddyPress is active
2) requires a file that sets up: `class Group_Stats_Extension extends BP_Group_Extension`
3) requires a file that sets up: `class Group_Spotlight_Extension extends BP_Group_Extension`
4) requires a file that sets up group meta according to Codex (https://codex.buddypress.org/developer-docs/how-to-edit-group-meta-tutorial/)
5) `bp_register_group_extension( ‘Group_Stats_Extension’ );`
6) `bp_register_group_extension( ‘Group_Spotlight_Extension’ );`
7) `bp_group_meta_init();` `add_action( ‘bp_include’, ‘bp_group_meta_init’ );` (Step 7 just runs the group meta function according to Step 4)