Description is not showing up in my collections list

Hey everyone! I’m trying to put an image on a collections list page and for some reason nothing is showing up.

I’ve tried using the ‘Image’ theme template but there isn’t any options to change the size of the collections image on the page specifically. I decided to just use the ‘Default Collection’ theme template and put an image in the description but nothing is actually showing up.

https://www.neuromindart.com/

Here is a picture of the image in the description

Here’s a picture of no image showing up on the page

Hi @Neuromind ,

Can you share the code of the collection.liquid or collection.json file for us to try?

Thanks you

1 Like
{% include 'collection-template' %}

{% schema %}
{
“name”: “Collection pages”,
“settings”: [
{
“type”: “select”,
“id”: “collection_products_grid”,
“label”: “Grid style”,
“options”: [
{
“value”: “collage”,
“label”: “Collage”
},
{
“value”: “grid”,
“label”: “Grid”
}
]
},
{
“type”: “checkbox”,
“id”: “collection_sort_enable”,
“label”: “Enable collection sorting”
},
{
“type”: “checkbox”,
“id”: “collection_tags_enable”,
“label”: “Show collection tags”
},
{
“type”: “checkbox”,
“id”: “product_vendor_enable”,
“label”: “Show product vendor”
}
]
}
{% endschema %}

Hi @Neuromind ,

YOu can try replace this part:


{% include 'collection-template' %}

by below code:


{{ collection.description }}

{% include 'collection-template' %}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

1 Like

Hey! This almost works. The only problem is the image isn’t centered on the page. Is there a way to get the image centered in the middle of the page?

I figured it out! It’s all in the settings inside the page editor. Thanks a ton!

1 Like