1

How can I add custom fields to buddypress profile?

1 Answers1

1

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\

shanebp
  • 1,904
  • 3
  • 17
  • 28