Reputation: 105
How can I add custom fields to buddypress profile?
Upvotes: 1
Views: 601
Reputation: 1956
You can extend this class to add custom profile fields: BP_XProfile_Field_Type
class Your_Field_Type_Name extends BP_XProfile_Field_Type { //etc
You'll find the class in buddypress\bp-xprofile\classes\
Upvotes: 1