Skip to:
Content
Pages
Categories
Search
Top
Bottom

Removing Profile Fields

  • 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.

Viewing 1 replies (of 1 total)
  • 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');

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar