Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author andykillen

    (@andykillen)

    yep, damn weird that one. I’m looking in to it now.

    Plugin Author andykillen

    (@andykillen)

    Hey MyRCBox

    The best (and I think only) solution to this is to move a bit of your theme to a new place.

    In the world of wordpress it requires that you have a function called wp_footer(); as the last command in your theme’s footer.php just before the closing </body> tag

    At the moment yours gets loaded while inside a table which creates your theme.

    What it should look like is this

    <?php wp_footer(); ?>
    </body>
    </html>

    this will force the correct loading and placement of the follow tab and also any other plugin’s usage of the wp_footer() function to hook into things.

    kind regards
    andy

    Thread Starter MyRCBox

    (@myrcbox)

    I’ve added the <?php wp_footer(); ?> right before the closing body bracket in the footer.php file. It has simply inserted another “Follow” bar at the end of the page.

    Maybe I should get another similar plugin. Any suggestion to replace the Share and Follow plugin?

    Thanks

    Plugin Author andykillen

    (@andykillen)

    just checked your website and it still has a closing table before the end of the page. Do you have some sort of caching setup?

    If your not happy, find your own plugin, I only support my own stuff

    Thread Starter MyRCBox

    (@myrcbox)

    I never meant to change the plugin itself, just its position into the code.

    I’ve kind of fixed the problem. I have inserted this code in my index.php file.

    <?php if (strpos($_SERVER['HTTP_USER_AGENT'],"MSIE 8")) {
    header("X-UA-Compatible: IE=7");} ?>
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Share and Follow] Follow bar showing on the bottom with IE’ is closed to new replies.