Forums

Join
bbPress Support ForumsThemesRemoving Profile Fields

Info

Tags

Removing Profile Fields

  1. Is there any way to change the fields in the profile? For example, if I wanted to remove the "Interests" field, would that be possible from the theme?

    In looking around these forums for an answer I see there is a plug-in for customizing the profile, but I wondered whether there is a simple theme-based solution.

    Thanks.

  2. Use this code as a plugin.

    function Hook_get_profile_info_keys($keys) {
        unset($keys['interest']);
        return $keys;
        }
    
    add_filter('get_profile_info_keys', 'Hook_get_profile_info_keys');
  3. You must log in to post.