I would like to display collection description on first page only and NOT all successive pages in a given collection as it does now for DAWN Theme?
Hello @Chr15a ,
You can try to follow these steps:
Go to Online Store → Theme → Actions → Edit code
Go to Sections → collection-template.css
Find this code:
{% if collection.description != blank %}
{{ collection.description }}
{% endif %}
Replace it with this code:
{% if collection.description != blank and paginate.current_page == 1 %}
{{ collection.description }}
{% endif %}
Save and preview
Hope this can help you out.
OneCommerce team.