• Resolved Col_Blimp

    (@col_blimp)


    BBPress uses a page called ‘forums’ internally for listing all your forums but you can add this page manually by creating a ‘forums’ page then you can customise it to your sites preferences so the page url is this:

    https://mysite.com/forums/

    and has a title of ‘Forum’ with a ‘Custom Page Title’ set to ‘Forum’ but when viewed in a browser the tab title simply says ‘Forum │’ without appending on ‘mysite’ and changing ‘Custom Page Title’ to ‘Forum │ mysite’ still shows up ‘Forum │’ in the browser tab.

    When visiting a forum in the browser the tab shows ‘Forum: myforum │’ rather than ‘myforum │ mysite’ and viewing a post shows ‘Topic: topic │’ rather than ‘topic │ mysite’.

    I removed Yeost Seo and replaced it with yours but Yeost Seo worked out the box with BBPress so I’m wondering is your plugin compatible with BBPress just yet or have I got some other troubles?

    https://www.ads-software.com/plugins/autodescription/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Col_Blimp

    (@col_blimp)

    Looking at source output then og:title is set correctly but <title></title> is being used instead and the title has the │ appended but no site name.

    og:description is using it’s default even though this has been changed in the page settings.

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi @col_blimp!

    You’re right! I’ve overlooked that.

    The next update will support the bbPress title, including its prefix.

    Until then, if you’re able to, please add this piece of code in a plugin or functions file:

    add_action( 'init', 'my_bbpress_title_hook' );
    function my_bbpress_title_hook() {
    	if ( function_exists( 'the_seo_framework' ) ) {
    		$theseoframework = the_seo_framework();
    		add_filter( 'bbp_title', array( $theseoframework, 'title_from_cache' ), 9, 3 );
    	}
    }

    I hope this helps! ??

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi Col_Blimp,

    I’m sorry I missed the question on the description, are you using a caching plugin?

    The whole output of The SEO Framework’s meta tags is stored in an object if object cache is available.

    I just tested it and it works as intended on my test site.

    Try to see if clearing the object cache helps, if available.

    Thanks and have a great day! ??

    Thread Starter Col_Blimp

    (@col_blimp)

    Thanks Sybre, the hook makes things as you would expect.

    Plugin Author Sybre Waaijer

    (@cybr)

    Hi Col_Blimp,

    Great to hear it has been resolved!

    Keep an eye out for 2.4.0 of The SEO Framework, it will include the suggested fix above internally ??

    I’ve marked this topic as resolved, if however you have follow up questions or other issues regarding this subject, feel free to re-open and/or reply to this topic and I’ll help you address the issue accordingly :).

    I hope you enjoy your day!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘BBPress’ is closed to new replies.