I’ve managed to come up with a workaround for the page title issue – this can be easily adapted by anyone using Yoast SEO.
Put this in your functions.php file
Edit the $title to whatever you want & set /discussion/users/ to your forum user profile path without the username.
function change_yoast_page_titles($title) {
// bbpress user profile
if(strstr($_SERVER[‘REQUEST_URI’],’/discussion/users/’)){
$title = ‘User Profile | ‘ . get_bloginfo(‘name’);
}
return $title;
}
add_filter(‘wpseo_title’,’change_yoast_page_titles’,100);
Thanks for that.
It doesn’t help the remaining issue that I have – page title for user profile not working…I guess i’ll have to try & find a work around.
BTW – you have stated that you will add support for BBpress previously…
https://support.codeless.co/forums/topic/bbpress-layout/