Ghost page 2 not loading properly


Issue Summary

  • When opening page 2 on my site (/page/2) it loads page 1 (front page) posts over and over, repeating the same duplicates without loading other posts)
  • What did you expect to happen? It should load older posts

Steps to Reproduce

  1. Open page 2 (/page/2)
  2. Scroll down, it dynamically loads new posts, but they are the same frontpage posts

Setup information

Ghost Version
Share which version of Ghost you’re using. Ghost (pro)

Node.js Version
If self-hosting - share which version of Node.js you’re using.

How did you install Ghost?
Provide some details about your install of Ghost if you are self-hosting.

Provide details of your host & operating system
Include further details about your hosting and OS.

Database type
MySQL 5.7 / MySQL 8 / SQLite 3 / Other

Browser & OS version
Include if reporting frontend bugs.

Relevant log / error output
Copy and paste any relevant log output. Use backticks to format this into code.

Which theme? This is going to be a theme issue, not a general Ghost issue, I’m guessing.

Theme is: source (v1.5.0)

Have tried reinstalling theme, and other themes but similar issues.

Only other customisations are custom routes/redirects, to create post collections (columns for a news site)

e.g.

routes

collections:
/all-about-wildlife/:
permalink: “/all-about-wildlife/{year}/{slug}/”
template: tag
filter: “tag:all-about-wildlife”

redirects

301:
^/wildlife/?(.)$: /all-about-wildlife/$1
^/all-about-wildlife/(.
)list/(.*)$: /all-about-wildlife/$1/$2

Source has some code that causes it to load the page 1 content again on page 2. It’s a source quirk, the result of not all of the content that “should” be on page 1 of the homepage possibly not being shown due to lots of separate #get requests to make that layout. (Are you confused yet? Source is definitely confusing.)

But… it shouldn’t be loading the content repeatedly (just once, on page 2), unless you’ve got some modifications or unexpected interactions gong on.

I haven’t seen similar behavior with other themes.

1 Like