1

How to change buddypress default button name "Add Friend" to Interest how to change default name in wordpress, buddypress from which script i can change the name.

2 Answers2

1

It can be done with

add_filter( 'bp_get_add_friend_button', 'change_add_friend_button' );
function change_add_friend_button($button){
    $button['link_text'] = __( 'Make Friend', 'buddypress' );
    return $button;
}
Prafulla Kumar Sahu
  • 9,321
  • 11
  • 68
  • 105
0

You can try to edit the file in this path:
wp-content/plugins/buddypress/buddypress.pot

Here you can create your own custom messages and labels without doing a full language translation.

I hope this help.

ɐlǝx
  • 1,384
  • 2
  • 17
  • 22