Yes it is. They’re added via WP action hooks and can be removed via the same means. Here’s something you can add to your custom file add-on’s custom_functions.php file or in a custom snippet plugin that will remove these from the edit screen and also the show user profile screen as well.
add_action ('show_user_profile', 'remove_custom_ee_show_profile_fields', 9);
function remove_custom_ee_show_profile_fields() {
remove_action('show_user_profile', 'event_espresso_show_extra_profile_fields');
}
add_action ('edit_user_profile', 'remove_custom_ee_edit_profile_fields', 9);
function remove_custom_ee_edit_profile_fields() {
remove_action('edit_user_profile', 'event_espresso_show_extra_profile_fields');
}
The support post ‘Remove "Events Profile Information" from Edit User Screen in Dashboard?’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.