BUFU1610
Forum Replies Created
-
Forum: Plugins
In reply to: [WPSSO Core - Complete Schema Markup and Meta Tags] Empty page in previewThanks, got to the same conclusion. Thank you very much!
Forum: Plugins
In reply to: [WPSSO Core - Complete Schema Markup and Meta Tags] Empty page in previewSo, I plowed through everything now that I have time for this and I found that a wp_title filter in my theme’s functions.php caused the problem. Here is the code:
function brnhmbx_wp_title( $title, $sep ) { if ( is_feed() ) { return $title; } global $page, $paged; // Add the blog name if ( !is_customize_preview() ) { $title .= bloginfo( 'name', 'display' ); } // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) { $title .= esc_html( " $sep $site_description" ); } return $title; } add_filter( 'wp_title', 'brnhmbx_wp_title', 10, 2 );Is it the fact that they used bloginfo() in the blog name part instead of get_gloginfo()?
BUFU
Forum: Plugins
In reply to: [WPSSO Core - Complete Schema Markup and Meta Tags] Empty page in previewHey there!
I just tested around with the titles and found that the preview works again when I leave the title field empty under “Settings > General”.
So, this solves the problem (apparently) for me, but shouldn’t be a problem in the first place in my opinion.
Thank you for the hints,
BUFUForum: Plugins
In reply to: [WPSSO Core - Complete Schema Markup and Meta Tags] Empty page in previewI have to take back everything I wrote in the answer before. It happened when I first checked, but now I wanted to confirm and now the source only says
2travellers2travellers
That is literally everything there is in the source.
And it doesn’t matter what kind of post I try, they all just have that.Any idea how that might happen?
BUFU
Forum: Plugins
In reply to: [WPSSO Core - Complete Schema Markup and Meta Tags] Empty page in previewHello again.
The source seems to be the complete page, but starting with2travellers2travellers<!DOCTYPE html> <!--[if IE 8]>After that the page seems to be complete in the source, but this line is blocking everything else from showing. Only the starting “2travellers2travellers” is displayed and nothing more.
The logfile I linked is the complete log. There is nothing more than this.
Thanks again,
BUFU
Forum: Plugins
In reply to: [WPSSO Core - Complete Schema Markup and Meta Tags] Empty page in previewOh, and I checked back by deactivating all other plugins (the theme has one slider plugin which cannot be deactivated, but all the others were) and it still blocks the preview… :/
My theme is Frida by Burnhambox, if it’s any help.Forum: Plugins
In reply to: [WPSSO Core - Complete Schema Markup and Meta Tags] Empty page in previewHello again.
You assumed wrongly. It’s just that not everyone’s lives revolve only around WP plugins.
So, I did log the debug messages: http://2travellers.de/wp-content/debug.log
Is there anything in there that shows you what might cause the problem?I just get a blank page with “2traveller2travellers” on it. That’s it.
Thanks for your help in advance.