- This topic has 1 reply, 2 contibutors, and was last updated 9 years, 2 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Question
Answers
Viewing 2 posts - 1 through 2 (of 2 total)
- The question ‘Docs Tab’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Docs Tab
Hello,
I have just upgraded my Wall plugin and boss them and now have a Docs Tab?
How do I fix this please
Hi @ammo
please include following function in your child theme
add_action( 'init' , 'bb_remove_docs_tab' , 15 );
function bb_remove_docs_tab() {
if(!is_plugin_active( 'buddypress-docs/loader.php' ) ) {
remove_action('template_redirect', 'bb_child_doc_menu_count_tabs', 999);
}
}
We have fixed this issue inside development version , it will be updated shortly
Regards