Remove Profile Info field from Profile

Hi I need the code snippet to remove Profile Info

Hey @Erick,

Try this:

add_filter('hivepress/v1/forms/user_update', function($form) {
    if (isset($form['fields']['description'])) {
        unset($form['fields']['description']);
    }
    return $form;
});

Cheers,
Chris :victory_hand:

1 Like