Hello
How can I change the buddypress navigation menu name from DWQA to just QUESTIONS only or other?.
1 Answers
You can use the following code in the functions.php file of your theme.
// Rename DWQ&A menu/tab
function rt_change_profile_tab_order() {
global $bp;
$bp->members->nav->edit_nav( array(
'name' => 'Your Question',
), 'dwqa' );
}
Please login or Register to submit your answer