OK, wp_debug also indicates the following…
Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /problem-with-post-edit-buttonome/triblogs/public_html/wp-content/plugins/simple-press/sp-startup/sp-load-debug.php:34) in /problem-with-post-edit-buttonome/triblogs/public_html/wp-content/plugins/pro-sites/pro-sites-files/lib/ProSites/Helper/Session.php on line 29
FYI: Pro Sites is the paid/premium blog platform for our multisite network, so we can’t live without it on our live site. Deactivating Pro Sites did not address the empty wp_query in sp debug box that displays upon page load.
../plugins/pro-sites/pro-sites-files/lib/ProSites/Helper/Session.php:27-30:
// Make sure session is started
if ( ! session_id() ) {
session_start();
}
and…
Notice: Undefined variable: output in /problem-with-post-edit-buttonome/triblogs/public_html/wp-content/themes/forthecause/includes/theme-actions.php on line 649
../themes/forthecause/includes/theme-actions.php:646-650:
if ( $settings['home_blog_img'] != '' ) {
$blog_image = $settings['home_blog_img'];
if ( is_ssl() ) { $blog_image = str_replace( 'http://', 'https://', $blog_image ); }
$output .= '#blog-posts { background-image: url( ' . esc_url( $blog_image ) . ' ) !important; }' . "
";
}
I suppose the latter suggests I should see what happens with another theme activated. But before I do that and start opening tickets with the other plugin/theme developers, I’d love to get a better understanding about what I’m looking at, or looking for…
Anything here suggest something interesting?