Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Wombat Plugins

    (@maartenbelmans)

    Hi @beeneeb,

    This can happen if you have the free & pro version both installed. Please uninstall the free version.

    Kind regards,
    Maarten

    Hi @maartenbelmans,

    I don’t have the pro version installed. Only the free version. Any other ideas?

    Thanks,

    Brian

    Plugin Author Wombat Plugins

    (@maartenbelmans)

    It looks like the theme’s CSS isn’t loading. Is your theme a custom one or did you manually edit your header or footer file?

    What happens if you add this code to your functions.php:

    wp_enqueue_style(‘wof-theme-red’);

    I tried that, but it didn’t work. I do have the following in my functions.php that moves the loading of my scripts to the footer for optimization:

    /**
     * Load Enqueued Scripts in the Footer
     *
     * Automatically move JavaScript code to page footer, speeding up page loading time.
     */
    function footer_enqueue_scripts() {
       remove_action('wp_head', 'wp_print_scripts');
        remove_action('wp_head', 'wp_print_head_scripts', 9);
        remove_action('wp_head', 'wp_enqueue_scripts', 1);
        add_action('wp_footer', 'wp_print_scripts', 5);
        add_action('wp_footer', 'wp_enqueue_scripts', 5);
        add_action('wp_footer', 'wp_print_head_scripts', 5);
    }
    add_action('after_setup_theme', 'footer_enqueue_scripts');
    add_action('after_setup_theme', 'remove_admin_bar');
    Plugin Author Wombat Plugins

    (@maartenbelmans)

    What happens if you remove that block of code for a second? Does it work then?

    Plugin Author Wombat Plugins

    (@maartenbelmans)

    Closed due to inactivity. Please feel free to reopen if you’re still having issues.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Background colors are blank’ is closed to new replies.