Viewing 8 replies - 1 through 8 (of 8 total)
  • Until he fixes the plugin, I did the following to fix this:

    1. In your theme, move your classes on that div to show BEFORE the id:

    <div class="clearfix" id="content">

    2. In the plugin find this line in ajax-page-loader.js:

    document.getElementById(AAPL_content).innerHTML = output;

    Replace it with:

    document.getElementById(AAPL_content).innerHTML = output.substring(1);

    Normally I would never recommend altering a plugin, but if you need a sloppy fix for now this should work.

    Thread Starter wrecknoble

    (@wrecknoble)

    Thanks, that sort of works. I’m still left with a:

    >

    at the top of each page. Not sure how to get rid of it…

    Make sure there is no space between the quotation marks from your ID and the closing > of the div tag.

    Thread Starter wrecknoble

    (@wrecknoble)

    There wasn’t any space before the closing > but there was a space between that and the next <div> tag. I got rid of that and now it works fine.

    Thanks a lot for your help. I hope the plugin author fixes the issue as it seems that others may be having the same problem as well

    Plugin Author Dean Williams

    (@deano1987)

    Fixed this in 2.7.1 apologies for the inconvenience.

    Hey Dean,

    Where can we get the 2.7.1 release?

    I will wait for the 2.7.1 version as well ??
    I have the same problem ??
    Thanks for your big work….

    Plugin Author Dean Williams

    (@deano1987)

    Sorry guys available now I forgot to set stable tag!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Extra text at the top of each loaded page (2.7.0)’ is closed to new replies.