Shopify Blog : How to add more than 6 articles per blog pages (Sense Theme)

Solved

Shopify Blog : How to add more than 6 articles per blog pages (Sense Theme)

BazarenCuisine
Tourist
8 0 2

Hi,

Where can I modify the code in my theme, so I can show 10 blog articles instead of 6 in the blog page ?

My blog is on this url : https://bazar-en-cuisine.fr/blogs/mug-cake-flocon-avoine

Best regards, 
Matthieu Poulain.

Accepted Solution (1)

exertweb
Tourist
24 7 3

This is an accepted solution.

Here are the steps to do that:

  1. Go to your theme’s code:

    • In your Shopify admin, navigate to Online Store > Themes.
    • Find your active theme and click on Actions > Edit Code.
  2. Locate the blog template:

    • In the left sidebar, scroll down to find the Templates section.
    • Look for the blog.liquid file (or it may be in the Sections folder as blog-template.liquid depending on your theme structure).
  3. Find the blog article limit:

    • In the blog.liquid file, locate the code responsible for displaying blog posts. It should look something like this:

      exertweb_1-1726936827201.png

       



    • Change the article limit:
      exertweb_0-1726936813806.png

       

Let me know if you need help with anything else!

View solution in original post

Replies 2 (2)

exertweb
Tourist
24 7 3

This is an accepted solution.

Here are the steps to do that:

  1. Go to your theme’s code:

    • In your Shopify admin, navigate to Online Store > Themes.
    • Find your active theme and click on Actions > Edit Code.
  2. Locate the blog template:

    • In the left sidebar, scroll down to find the Templates section.
    • Look for the blog.liquid file (or it may be in the Sections folder as blog-template.liquid depending on your theme structure).
  3. Find the blog article limit:

    • In the blog.liquid file, locate the code responsible for displaying blog posts. It should look something like this:

      exertweb_1-1726936827201.png

       



    • Change the article limit:
      exertweb_0-1726936813806.png

       

Let me know if you need help with anything else!

BazarenCuisine
Tourist
8 0 2

Thanks, 

it way simpler then that, I just needed to go line 19 and to modify the code

"{%- paginate blog.articles by 10 -%}"