@ixistudio
Active 1 year ago
-
Alberto replied to the topic How do I change the name of a profile tab in the forum Installing BuddyPress 3 years, 9 months ago
It seems like the “bp_nav” is deprecated, now I use te code below to change the tab labels:
function ns_profile_tab_labels() {
global $bp;
$bp->members->nav->edit_nav( array(
'name' => __('My Timeline', TEXT_DOMAIN),
), 'activity' );$bp->members->nav->edit_nav( array(
'name' => __('My Connections', TEXT_DOMAIN),
), 'friends'…[Read more]