• bueroflo

    (@bueroflo)


    Hi SEO-F.

    I do have on every WordPress & SEO-Framework installation the same problem:

    – layout is shifted
    – parts of the layout not clickable

    Can anybody help me – should we wait for a SEO-Framework Update?

    X

    Flo

    Screenshot

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.
    Thread Starter bueroflo

    (@bueroflo)

    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);

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.