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
1 Like