BuddyPress Actions Debugging Cheatsheet

We recently needed to debug some BuddyPress actions for a plugin we were working on. Below is a cheatsheet that Alec created. Enjoy!

//debug stuff - find hooks
// function print_profile_update() {
// 	echo 'print_profile_update';
// }
// add_action('profile_update,', 'print_profile_update');

// function print_xprofile_screen_display_profile() {
// 	echo 'print_xprofile_screen_display_profile';
// }
// function print_xprofile_screen_edit_profile() {
// 	echo 'print_xprofile_screen_edit_profile';
// }
// function print_xprofile_screen_change_avatar() {
// 	echo 'print_xprofile_screen_change_avatar';
// }
// function print_xprofile_screen_notification_settings() {
// 	echo 'print_xprofile_screen_notification_settings';
// }
// function print_xprofile_new_wire_post() {
// 	echo 'print_xprofile_new_wire_post';
// }
// function print_xprofile_delete_wire_post() {
// 	echo 'print_xprofile_delete_wire_post';
// }
// function print_xprofile_format_activity() {
// 	echo 'print_xprofile_format_activity';
// }
// function print_xprofile_format_notifications() {
// 	echo 'print_xprofile_format_notifications';
// }
// function print_xprofile_updated_profile() {
// 	echo 'print_xprofile_updated_profile';
// }
// function print_xprofile_profile_group_tabs() {
// 	echo 'print_xprofile_profile_group_tabs';
// }
// add_action('xprofile_screen_display_profile','print_xprofile_screen_display_profile');
// add_action('xprofile_screen_edit_profile','print_xprofile_screen_edit_profile');
// add_action('xprofile_screen_change_avatar','print_xprofile_screen_change_avatar');
// add_action('xprofile_screen_notification_settings','print_xprofile_screen_notification_settings');
// add_action('xprofile_new_wire_post','print_xprofile_new_wire_post');
// add_action('xprofile_delete_wire_post','print_xprofile_delete_wire_post');
// add_action('xprofile_format_activity','print_xprofile_format_activity');
// add_action('xprofile_format_notifications','print_xprofile_format_notifications');
// add_action('xprofile_updated_profile','print_xprofile_updated_profile');
// add_action('xprofile_profile_group_tabs','print_xprofile_profile_group_tabs');


// function print_test_action() {
// 	echo 'print test success';
// }
// function print_test_action_screen_my_groups() {
// 	echo 'print_test_action_screen_my_groups';
// }
// function print_test_action_screen_group_invites() {
// 	echo 'print_test_action_screen_group_invites';
// }
// function print_test_action_screen_group_home() {
// 	echo 'print_test_action_screen_group_home';
// }
// function print_test_action_screen_group_forum_topic() {
// 	echo 'print_test_action_screen_group_forum_topic';
// }
// function print_test_action_screen_group_forum() {
// 	echo 'print_test_action_screen_group_forum';
// }
// function print_test_action_screen_group_members() {
// 	echo 'print_test_action_screen_group_members';
// }
// function print_test_action_screen_group_invite() {
// 	echo 'print_test_action_screen_group_invite';
// }
// function print_test_action_screen_group_leave() {
// 	echo 'print_test_action_screen_group_leave';
// }
// function print_test_action_screen_group_request_membership() {
// 	echo 'print_test_action_screen_group_request_membership';
// }
// function print_test_action_screen_group_admin() {
// 	echo 'print_test_action_screen_group_admin';
// }
// function print_test_action_screen_group_admin_edit_details() {
// 	echo 'print_test_action_screen_group_admin_edit_details';
// }
// function print_test_action_screen_group_admin_settings() {
// 	echo 'print_test_action_screen_group_admin_settings';
// }
// function print_test_action_screen_group_admin_manage_members() {
// 	echo 'print_test_action_screen_group_admin_manage_members';
// }
// function print_test_action_screen_group_admin_requests() {
// 	echo 'print_test_action_screen_group_admin_requests';
// }
// function print_test_action_screen_group_admin_delete_group() {
// 	echo 'print_test_action_screen_group_admin_delete_group';
// }
// function print_test_action_screen_notification_settings() {
// 	echo 'print_test_action_screen_notification_settings';
// }
// function print_test_action_new_forum_topic_post() {
// 	echo 'print_test_action_new_forum_topic_post';
// }
// function print_test_action_new_group_forum() {
// 	echo 'print_test_action_new_group_forum';
// }
// function print_test_action_new_forum_topic() {
// 	echo 'print_test_action_new_forum_topic';
// }
// add_action('groups_screen_my_groups', 'print_test_action_screen_my_groups');
// add_action('groups_screen_group_invites', 'print_test_action_screen_group_invites');
// add_action('groups_screen_group_home', 'print_test_action_screen_group_home');
// add_action('groups_screen_group_forum_topic', 'print_test_action_group_forum_topic');
// add_action('groups_screen_group_forum', 'print_test_action_screen_group_forum');
// add_action('groups_screen_group_members', 'print_test_action_screen_group_members');
// add_action('groups_screen_group_invite', 'print_test_action_screen_group_invite');
// add_action('groups_screen_group_leave', 'print_test_action_screen_group_leave');
// add_action('groups_screen_group_request_membership', 'print_test_action_screen_group_request_membership');
// add_action('groups_screen_group_admin', 'print_test_action_screen_group_admin');
// add_action('groups_screen_group_admin_edit_details', 'print_test_action_screen_group_admin_edit_details');
// add_action('groups_screen_group_admin_settings', 'print_test_action_screen_group_admin_settings');
// add_action('groups_screen_group_admin_manage_members', 'print_test_action_screen_group_admin_manage_members');
// add_action('groups_screen_group_admin_requests', 'print_test_action_screen_group_admin_requests');
// add_action('groups_screen_group_admin_delete_group', 'print_test_action_screen_group_admin_delete_group');
// add_action('groups_screen_notification_settings', 'print_test_action_screen_notification_settings');
// add_action('groups_promoted_member', 'print_test_action');
// add_action('groups_demoted_member', 'print_test_action');
// add_action('groups_banned_member', 'print_test_action');
// add_action('groups_unbanned_member', 'print_test_action');
// add_action('groups_format_activity', 'print_test_action');
// add_action('groups_format_notifications', 'print_test_action');
// add_action('groups_create_group_step1_save', 'print_test_action');
// add_action('groups_create_group_step2_save', 'print_test_action');
// add_action('groups_create_group_step3_save', 'print_test_action');
// add_action('groups_created_group', 'print_test_action');
// add_action('groups_delete_group', 'print_test_action');
// add_action('groups_new_group_forum', 'print_test_action_new_group_forum');
// add_action('groups_new_forum_topic_post', 'print_test_action_new_forum_topic_post');
// add_action('groups_new_forum_topic', 'print_test_action_new_forum_topic');
// add_action('groups_invite_user', 'print_test_action');
// add_action('groups_uninvite_user', 'print_test_action');
// add_action('groups_accept_invite', 'print_test_action');
// add_action('groups_reject_invite', 'print_test_action');
// add_action('groups_send_invites', 'print_test_action');
// add_action('groups_leave_group', 'print_test_action');
// add_action('groups_join_group', 'print_test_action');
// add_action('groups_new_wire_post', 'print_test_action');
// add_action('groups_deleted_wire_post', 'print_test_action');
// add_action('groups_details_updated', 'print_test_action');
// add_action('groups_settings_updated', 'print_test_action');
// add_action('groups_membership_requested', 'print_test_action');
// add_action('groups_membership_accepted', 'print_test_action');
// add_action('groups_membership_rejected', 'print_test_action');
// add_action('groups_remove_data', 'print_test_action');
Posted in ,

The Mighty Mo! Design Co.

RSS From Toby’s Blog

More posts from themightymo.com

WordPress Support

The Ultimate Guide to WordPress Support: Why it’s Essential for Your Website’s Success

By The Mighty Mo! Design Co. | September 25, 2023

Whether you’re situated in Minneapolis, St. Paul, Illinois, New York, or any other corner of the globe, ensuring reliable WordPress Support is paramount for the continued success of your website. In this comprehensive guide, we will delve into the crucial role that WordPress support plays in your website’s journey to success.

sem rush log file analyzer

How to optimize your Google Crawl Budget using SEM Rush Log File Analyzer and Rank Math SEO

By The Mighty Mo! Design Co. | September 22, 2023

Today I ran the SEM Rush Log File Analyzer tool, and it showed some interesting things that are a complete waste of our Google Crawl Budget. Specifically, I learned that Google is wasting some of our crawl budget on the /wp-includes/ directory, certain plugin directories, and cache directories. I also noticed random files being crawled…

google analytics definitive guide

Where is the Google Analytics Measurement ID?

By Toby Cryns | August 16, 2023

In the vast, evolving world of web development and analytics, keeping up with terminologies and tools can sometimes feel like trying to chase a mischievous cat in a maze. You think you’ve got a grip, only for it to slip right through your fingers! Enter the mysterious “Measurement ID” from Google Analytics 4 (GA4), a…

RSS From Toby’s Blog