Max SE
asked 5 years ago

Hello
How can I change the buddypress navigation menu name from DWQA to just QUESTIONS only or other?.

1 Answers
DominicStaff
answered 5 years ago

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' );
}
Powered by DW Question & Answer Pro