It seems to be related to your WordPress installation or a plugin conflict. I use The SEO Framework on all my websites and all works like a charm. You can try by deactivating and activating your other plugins one by one. Also clear the cache (if you’re using a cache plugin) and deactivate it and check if still happening.
Cheers
-
This reply was modified 1 week, 6 days ago by
Geetar.
Thanks for your answer Geetar! It seems to be a theme issue, not a plugin problem. Thats bad, because to wait until a update can take a time.
Workaround is to deactivate some theme code with the wordpress plugin Snippets.
Thanks!
Code:
add_action('admin_enqueue_scripts', function($hook) {
// DEACTIVATE GRAPHIC ISSUE SEO-FRAMWORK
if (strpos($hook, 'seo') === false && strpos($hook, 'theseoframework') === false) {
return;
}
global $wp_styles, $wp_scripts;
foreach ($wp_styles->queue as $style) {
if (strpos($style, 'lay') !== false) {
wp_dequeue_style($style);
}
}
foreach ($wp_scripts->queue as $script) {
if (strpos($script, 'lay') !== false) {
wp_dequeue_script($script);
}
}
}, 100);