Info
- 2 posts
- 2 voices
- Started 4 years ago by Lookfab
- Latest reply from livibetter
- This topic is not resolved
Removing Profile Fields
-
- Posted 4 years ago #
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.
-
- Posted 4 years ago #
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'); -
You must log in to post.