• Resolved jordannorris

    (@jordannorris)


    I’m having an odd issue with the next page of posts being loaded almost as soon as the page is scrolled, rather than when the bottom of the container (plus the scroll_distance value) is scrolled into view.

    Could this be a css property confusing the plugin as to where the bottom of the container is?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Darren Cooney

    (@dcooney)

    Hi @jordannorris,
    Your issue the the following CSS.

    .alm-btn-wrap {
        display: none;
    }

    Update that to should fix the issue:

    .alm-btn-wrap {
        opacity: 0;
        visibility: hidden;
        height: 1;
    }

    The load more button is the trigger for post loading so it can’t be hidden.

    Cheers,

    Thread Starter jordannorris

    (@jordannorris)

    Top man.

    Thank you very much for getting back to me so quickly!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Load on scroll loads too early’ is closed to new replies.