Alexander Kolovsky
Alexander Kolovsky

Reputation: 105

How to add custom field to buddypress profile?

How can I add custom fields to buddypress profile?

Upvotes: 1

Views: 601

Answers (1)

shanebp
shanebp

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

Related Questions