• Good morning

    I just installed Popover plugin from WPMU DEV Version 4.5.3 and upon installation in WordPress 3.9 I got the following error

    Your active theme:
    Is missing the call to <?php wp_head(); ?> which should appear directly before </head>
    Is missing the call to <?php wp_footer(); ?> which should appear directly before </body>

    When I checked header within the theme editor it looks like <?php wp_head(); ?> is there.

    <head>
    <meta charset=”<?php bloginfo(‘charset’); ?>”>
    <title><?php wp_title(”); ?></title>
    <?php mts_meta(); ?>
    <link rel=”stylesheet” type=”text/css” media=”all” href=”<?php bloginfo( ‘stylesheet_url’ ); ?>” />
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <?php wp_enqueue_script(“jquery”); ?>
    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>
    <!–[if lt IE 9]> <script src=”https://html5shim.googlecode.com/svn/trunk/html5.js”></script&gt; <![endif]–>
    <?php mts_head(); ?>
    <?php wp_head(); ?>
    </head>

    When I checked the footer it also looks like it’s correct as per the code below.

    <?php $options = get_option(‘playbook’); ?>
    </div>
    </div><!–#page–>
    </div><!–.main-container–>
    <footer>
    <div class=”container”>
    <div class=”footer-widgets”>
    <?php widgetized_footer(); ?>
    <div class=”copyrights”>
    <?php mts_copyrights_credit(); ?>
    <span class=”cright”><?php echo $options[‘mts_copyrights’]; ?></span>
    </div>
    <div class=”top”>
    </div>
    </div><!–.footer-widgets–>
    </div><!–.container–>
    </footer><!–footer–>
    <?php mts_footer(); ?>
    <?php wp_footer(); ?>
    </body>
    </html>

    Here is what I have done to try to fix the issue after reading previous answers but it doesn’t seem to help.

    Deactivated all plugins and reactive them one by one to see which plugin is causing the issue.

    Deactivated and uninstalled Popover plugin from WPMU DEV Version 4.5.3 and deleted all files when WP prompted me to do so.

    Eemptied the caches using W3 Total Cache.

    Re-installed the zip file for the plugin and reactivated it but the same issue keeps coming back.

    Can anyone help me to try and understand what is causing the issue as well as how to fix it?

    Thanks.

  • The topic ‘Popover plugin from WPMU DEV’ is closed to new replies.