Move collection description to the top for specific collection

Hi,

I use the Grid theme. The collection description is shown below the pagination which is fine.

I have now created a collection where I need some text (for instructions) below the breadcrumbs at the top of the collection page instead (no description needed at the bottom for this collection). The collection is called “Postkarten”.

This is the code from the collection.liquid file for the bottom of the page:

{% if collection.description != blank and section.settings.show_description %}

{{ collection.description }}
{% endif %}

And this for the top of the page:

{% unless use_masonry %}

{{ collection.title }}

{% render 'breadcrumbs' %} {% endunless %}

{% paginate collection.products by products_per_page %}

{% if use_masonry or show_collection_image or collection.description != blank or show_sorting or show_tags %}

{% if show_collection_image %}
{% render 'rimg', img: collection.image, size: '1024x1024', lazy: true %}
{% endif %}
{% if use_masonry %} {% render 'breadcrumbs' %}

{{ collection.title }}

{% endif %}

How can I change for specific collections to move the description to the top? Or is there another solution to have a text for instructions at the top?

Thank you!

Best,

Kerstin

@sugarprints you want to show your collection description after breadcrumb

@sugarprints Please add this code


    {% if use_masonry %}
    {% render 'breadcrumbs' %}
    # {{ collection.title }}
    {% endif %} // here is your collection name
    {% if collection.description != blank and section.settings.show_description %}
    
    {{ collection.description }}//here is your collection description
    

    {% endif %}

Thank you but I am not sure whether you understood my case.

I need to move it to the top only for one specific collection, not for all collections.

yes i only add collection description section on top of pagination https://prnt.sc/jgmHJ7H_x2Zo

But this code will move all collection descriptions to the top - this is NOT requested.