How can I rewrite a bbpress plugin function?
-
I’m trying to make this checkbox checked by default: Create a Group -> 4. Forum -> Group Forum -> “Yes. I want this Group to have a forum.”
I found the code that handles this at /plugins/bbpress/includes/extend/buddypress/group.php, a function called
create_screen
. I’d like to customize this function, so I copied the function to a plugin script. I figure I have to do something likeremove_action(‘whereever_the_hook_for_the_group_creation_thing_is’, ‘create_screen’);
add_action( ‘whereever_the_hook_for_the_group_creation_thing_is’, ‘create_screen’ );to get my custom version to replace the stock version, but I don’t know where the hook is or how to go about finding it.
- You must be logged in to reply to this topic.