BuddyBoss Home – Web Support Forums Themes Boss. theme Boss. Theme 2.1.3 Fix – Titles in BuddyPress pages

Viewing 7 posts - 1 through 7 (of 7 total)
  • Question

    #62654
    @wrkazigmail

    need to konw the changed files for this fix: Titles in BuddyPress pages

    what excatly has changed in Titles in BuddyPress pages???

    Answers

    #62711
    @mln83

    Following 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,
    Michael

    #62757
    @wrkazigmail

    Yes 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…..

    #63219
    @wrkazigmail
    #63269

    Alyssa
    Participant
    @alyssa-buddyboss

    Hello @wrkazigmail, Checkbox Enable rewrite titles is conditional on current_theme_supports( 'title-tag' ), Its only appear if theme does not have a title-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!

    #63509
    @wrkazigmail

    Yes thanks paresh that fixes it…close this ticket

    #63512
    @vapvarun

    Cool, I will close this one
    Regards
    Varun Dubey

Viewing 7 posts - 1 through 7 (of 7 total)
  • The question ‘Boss. Theme 2.1.3 Fix – Titles in BuddyPress pages’ is closed to new replies.