• I’m currently using the Inove theme and my wordpress.com stats will not load, I have read several help me’s about adding

    <?php wp_footer(); ?>

    but I have no idea where to add it in the footer file This what my Footer File Looks like

    </div>
    <!– main END –>

    <?php get_sidebar(); ?>
    <div class=”fixed”></div>
    </div>
    <!– content END –>

    <?php include(‘templates/end.php’); ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • What’s in end.php?

    Thread Starter upperthinking

    (@upperthinking)

    This is what the end.php file looks like. When I opened it up it already had the

    <?php wp_footer(); ?>

    inserted but obviously it doesnt work maybe its inserted in the wrong place because API key works fine.

    <!– footer START –>
    <div id=”footer”>
    <?php _e(‘Top’, ‘inove’); ?>
    WordPress
    <div id=”copyright”>
    <?php
    global $wpdb;
    $post_datetimes = $wpdb->get_results(“SELECT YEAR(post_date_gmt) AS year FROM $wpdb->posts WHERE post_date_gmt > 1970 ORDER BY post_date_gmt ASC”);
    $firstpost_year = $post_datetimes[0]->year;
    $lastpost_year = $post_datetimes[count($post_datetimes)-1]->year;

    $copyright = __(‘Copyright © ‘, ‘inove’) . $firstpost_year;
    if($firstpost_year != $lastpost_year) {
    $copyright .= ‘-‘. $lastpost_year;
    }

    echo $copyright;
    ?>
    <?php bloginfo(‘name’); ?>
    </div>
    <div id=”themeinfo”>
    <?php _e(‘Theme by mg12. Valid XHTML 1.1 and CSS 3.’, ‘inove’); ?>
    </div>
    </div>
    <!– footer END –>

    </div>
    <!– container END –>
    </div>
    <!– wrap END –>

    <?php wp_footer(); ?>

    </body>
    </html>

    Did you ever get this to work? I have the exact same problem, using latest version of Inove, WordPress and the WordPress.com Stats-plugin.

    Anyone?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Using Inove Theme WordPress.com Stats Won’t Load’ is closed to new replies.