Support Forum
are you using an SEO plugin?
and literally every option on forum - components - seo is enabled?
search yields this: https://simple-press.com/suppo.....2/#p124538
Visit Cruise Talk Central and Mr Papa's World
so would still like to know if you are using SEO plugin and if so, which one...
Visit Cruise Talk Central and Mr Papa's World
that's the yoast one, right? generally working for users and in use on one of our test sites since its somewhat popular...
so every sp checkbox is checked in the forum - components - seo panel (just checking cause most dont do that - shouldnt matter)... might try unchecking the force sp one and see...
I will also try to dig in a bit further on our test site and see if we have an special wordpress seo options checked and verify the hooks (if any) we are using...
the wp_title() function is the most 'abused' hook in wp by abused mean plugins and themes always battle over setting it, so its a constant struggle... yoast himself has updated his plugin half a dozen times to alter the usage of that hook because some other thing was interfering... nobody inherently wrong, just competing for controlling the title.. and most seo plugins assume a wp page is static which is not true and not the case here...
I assume you have told genesis to use wordpress seo?
Visit Cruise Talk Central and Mr Papa's World
give this a try to keep yoast from ruling the roost...
add_action('sph_forum_startup', 'do_my_title_filter'); function do_my_title_filter() { remove_filter('wp_title', 'sp_setup_browser_title', 99, 3); # want it to run last add_filter('wp_title', 'sp_setup_browser_title', 10, 3); # want it to run last remove_filter( 'wp_title', array( $GLOBALS['wpseo_front'], 'title' ), 15, 3 ); # dont let yoast ruin our title }
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)