bbPress

Simple, Fast, Elegant

bbPress support forums » Themes

Removing Profile Fields

(2 posts)
  • Started 8 months ago by Lookfab
  • Latest reply from livibetter
  • This topic is not resolved

Tags:

  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.

    Posted 8 months ago #
  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');
    Posted 8 months ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.