Forum Replies Created
-
In reply to: Private Group Members List Access
Bumping this.. Does anybody know where this access check and redirect takes place?
In reply to: Rewrite Rules and Query Vars QuestionI see that the bp_uri filter is run before handling $_GET variables.. Might this help me accomplish my goal here?
In reply to: Using Group Extension API to add 2 extensionsCould this be related to this ticket?
In reply to: Using Group Extension API to add 2 extensionsFirst 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)