Dawn Collection Banner Paginate

Hi,

I’m new to Shopify and still trying to find my feet !

I’m creating a new website for our company and have hit a stumbling block with the collection banner. I would like the ability of just showing the collection banner, heading / text / picture on the first page only, with possibly a toggle switch to activate this function.

I see this has been asked before however I tried to follow the instructions and, well, it just didn’t work out well !

I really hope someone can assist!

Hi - if you want something to only appear on the home page, you can set up some logic with Liquid, using the paginate.current_page object like:

{% if paginate.current_page == 1 %}
 // code for collection banner
{% endif %}

Then the content should only show up on the first page.

Many thanks, I’ll give this a go this evening!