BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Boss. Theme 2.1.3 Fix – Titles in BuddyPress pages
- This topic has 6 replies, 4 contibutors, and was last updated 8 years, 8 months ago by Anonymous.
Question
March 12, 2016 at 4:10 am #62654@wrkazigmailneed to konw the changed files for this fix: Titles in BuddyPress pages
what excatly has changed in Titles in BuddyPress pages???
Answers
March 12, 2016 at 1:21 pm #62711@mln83Following the Boss 2.1.2 update I and other users discovered that the Browser Title read test on BP pages.
It was promptly fixed by BuddyBoss and lead to Boss 2.1.3. 🙂
Best regards,
MichaelMarch 12, 2016 at 11:24 pm #62757@wrkazigmailYes faced that test issue myself….and yes BuddyBoss is 2 prompt to fix issues!!!! and not sure where this testing will lead to honestly maybe 2.1.9 would have all the issues fixed…..
for the support team…(other then those who are visiting India and giving lectures in BP camps)
was this added:
function theme_slug_setup() {
add_theme_support( ‘title-tag’ );
}
add_action( ‘after_setup_theme’, ‘theme_slug_setup’ );Yoast SEO is behaving strangely….force rewrite rule setting is not showing up in the settings…..
March 16, 2016 at 3:03 am #63219@wrkazigmail@tomchedd @michael
March 16, 2016 at 5:50 am #63269@alyssa-buddyboss
AlyssaParticipantHello @wrkazigmail, Checkbox Enable rewrite titles is conditional on
current_theme_supports( 'title-tag' )
, Its only appear if theme does not have atitle-tag
support.You can remove
title-tag
support from theme using following snippets.function theme_slug_setup() { remove_theme_support( 'title-tag' ); } add_action( 'after_setup_theme', 'theme_slug_setup', 11 );
See more here https://github.com/Yoast/wordpress-seo/issues/3585
Let me know how it goes.
Thanks!
March 17, 2016 at 1:20 am #63509@wrkazigmailYes thanks paresh that fixes it…close this ticket
March 17, 2016 at 1:42 am #63512@
AnonymousCool, I will close this one
Regards
Varun Dubey
- The question ‘Boss. Theme 2.1.3 Fix – Titles in BuddyPress pages’ is closed to new replies.