If you try SEOPRESS, read this
https://wordpress.org/support/topic/crash-when-trying-page-sitemap1-xml/
and install the FIX.
I installed SEOPress and also added the FIX in to my functions file. Turned everything on and it still is not showing the page title correctly.
https://gopherpucklive.com/portal/
Why does the widget do this? It's frustrating.
EDIT: I switched back to Yoast since SEOPress made no difference.
Why not use Yoast or SEOPress? And leave the issue as it is? Enable wpForo SEO.
Destroying your seo of the forums ... is not a good idea, IMHO.
Well... My Portal page is the main landing page for the users of my forum and is by far the most popular page on the site. So having it show up properly for SEO is a pretty big deal.
If this cannot be fixed, I will be forced to turn off WPForo SEO... Because user do not find my site on message board content. They find it on all the other content. So I am willing to sacrifice the seo of the message board to make sure the most popular page on my site is shown properly.
I ended up doing the following. In the Phrases settings. Changed "Recent Posts" to "Portal".
Then I went in to the "Themes/2022/Recent.php" file and did the following to get it all to work.
Find: default: $page_title = wpforo_phrase( 'Recent Posts', false ); break; CHANGE TO: default: $page_title = "Recent Posts"; break; FIND: <option value="<?php echo esc_url( wpforo_home_url( wpforo_settings_get_slug( 'recent' ) ) ) ?>" <?php wpfo_check( $view, 'recent', 'selected' ) ?>> <?php wpforo_phrase( 'Recent Posts' ) ?> </option> CHANGE TO: <option value="<?php echo esc_url( wpforo_home_url( wpforo_settings_get_slug( 'recent' ) ) ) ?>" <?php wpfo_check( $view, 'recent', 'selected' ) ?>> Recent Posts </option>
Doing this got it to do what I wanted it to do on the PORTAL page and creates a slight work around on the Recent Posts page. I just need to update the code each time there is an update. Which is no big deal for me.
I like what you did with your forum and I am trying to achieve the same. When just using shortcode for recent posts, it shows way more info than it should, as you mentioned previously. Since you comment about writing custom CSS , is there any other, simpler, faster way to achieve the look that you managed to do on your website?