Skip to content
SEOScanShopify SEOContent Quality
Medium SeverityContent Quality

Duplicate SEO Descriptions on Paginated Collections

Search intent: fix · Updated February 2026

Direct Answer

Merchants often write 500-word SEO descriptions for their collection pages to boost rankings. However, Shopify blindly renders this exact same block of text on page 2, page 3, and all paginated variants of the collection. This forces Google to read identical boilerplate text across multiple distinct URLs, triggering duplicate content flags and diluting keyword density. The fix involves wrapping the {{ collection.description }} liquid tag in an if-statement that checks if the current_page is 1, ensuring the text only loads on the primary root URL.

Not sure if your store has this issue?

Run a free scan to detect content quality problems instantly.

Free Scan

What This Issue Means

To Google, page 1 and page 2 of a collection are distinct URLs. If both pages contain the exact same 500-word block of content, they compete against each other and dilute their individual relevance. Further, it pushes the actual products further down the screen for users browsing deep into a catalogue.

What Causes It (Shopify-Specific)

1

Unconditional description rendering

In most default themes, including Dawn, the description is fetched via {{ collection.description }} above or below the product grid without checking what page the user is viewing.

How to Detect It Manually

  1. 1Navigate to a long collection on your site.
  2. 2Scroll to the bottom and click "Page 2" or "Next".
  3. 3If your main SEO text block is still visible on the screen, your site is suffering from paginated text duplication.

How to Fix It (Step-by-Step)

1

Wrap the collection description in your theme

Open your main-collection-banner.liquid (or equivalent template) and wrap the description output block.

liquid
{%- if current_page == 1 and collection.description != blank -%}
  <div class="collection-hero__description rte">
    {{ collection.description }}
  </div>
{%- endif -%}

How SEOScan Detects This Issue

SEOScan analyzes the text-to-code ratio and exact string matching between /collection-name and /collection-name?page=2. If high-density identical text blocks are detected across paginated states, it flags the issue.

Example Scan Result

Redundant SEO text blocks found on paginationMedium

Description

A 450-word description block is being rendered identically on paginated variants of this collection.

Impact

Triggers duplicate content algorithms in Google, watering down the organic ranking power of the root collection URL.

Recommended Fix

Use {% if current_page == 1 %} inside the collection liquid template to restrict description rendering.

Why It Matters for SEO

Keyword Density

Spreading the exact same keyword-dense content across multiple pages confuses Google regarding which page is the definitive answer for a query.

Real-World Validation Signals

  • Simple conditional logic updates to pagination descriptions result in cleaner indexation and less "Duplicate, Google chose different canonical than user" Search Console errors.

Frequently Asked Questions

Q: Does Google index page 2 of my collections?

Yes, Google crawls pagination to discover new products. By keeping page 2 clean and focused only on products, you help Googlebot parse your inventory faster.

Check Your Store for This Issue

SEOScan automatically detects duplicate seo descriptions on paginated collections and 1 related issues - with specific fixes for your store.

Run Free Scan

Related Issues