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');
More posts from themightymo.com
How to change all permalink slugs on a custom post type to “post id” rather than “post title”
Today I needed to change the url slug of a custom post type from /cpt-slug/%post-title%/ to /cpt-slug/%post-id%/. There were thousands of solutions on the web explaining how to change the “cpt-slug” portion of the url, but I couldn’t find a simple solution to change the last part of the url. Well here it is! The…
My Main Issue with Clickup
Clickup integrates with everything. It’s simple to use. But there’s one thing that drives me crazy: Their user interface (UI) assumes the conversation we have around to-dos is NOT important. Clickup‘s UI assume the task writeup stuff (uploaded docs, description, links, etc.) is more important than the conversation about that stuff. In my experience, the…
How to merge two folders, including all sub-folders and files, on Mac
Today I had an issue where I needed to merge two folders, each of which contained many sub- and sub-sub folders that had lots of images. After a lot of trial-and-error and some Googling, I found the best solution is to use the “ditto” command in Terminal like this: That’s it! Hat tip to AppleInsider.