@sergido,
Try to remove the site title with this code. Put this code in the functions.php file of your current active WordPress theme, or use the Code Snippet plugin to add this code to your website.
function my_custom_seo_title_in_forum_home($meta_title){
return (array)$meta_title[0];
}
add_filter('wpforo_seo_main_title', 'my_custom_seo_title_in_forum_home');