Sense Blog: How to I change to display more than 6 Posts

Topic summary

A user needed to increase the number of blog posts displayed per page in the Sense theme from the default 6 to 12.

Solution provided:

  • Navigate to Edit code in the theme editor
  • Open the file /sections/main-blog.liquid
  • Locate Line 19 containing {%- paginate blog.articles by 6 -%}
  • Change the number 6 to 12

The Sense theme lacks a built-in setting for this adjustment, requiring direct code modification. The solution was confirmed successful by the original poster.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hi there, can somebody please help me with changing how many blog posts are shown on each page for Sense theme? It only shows 6 posts as standard but I’d like to extend to 12.

Any help would be greatly appreciated!

Hello,

The Sense theme doesn’t have an option for this, so you’ll have to change this in the code.

Go to Edit code and then open the file /sections/main-blog.liquid.

On Line 19, you’ll see this code:

{%- paginate blog.articles by 6 -%}

Change the 6 to 12 and you are good to go.

Thank you so much! I was going mad trying to find that section of code!! Thank youuuu!!