Untitled title on some pages
-
Hello, some pages of my site have Untitled title because of your plugin. I have already reported you this error 10 months ago and you fixed it with this code:
add_action( 'parse_request', function( $wp ) { // Add any page you wish to exlude here on a new line; use * as a wildcard. $pages_to_exclude = [ 'buy-points', 'profile/*', ]; if ( ! is_admin() && isset( $wp->request ) ) { if ( preg_match( '#^' . str_replace( '*', '.*?', implode( '|', $pages_to_exclude ) ) . '$#i', $wp->request ) ) { add_filter( 'the_seo_framework_post_type_disabled', '__return_true' ); } } } );
But this solution doesn’t work anymore. Could you please help me to solve this issue once again?
Thank you.The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Untitled title on some pages’ is closed to new replies.