Collection Description Not Displaying on Grid Theme

I currently have the grid theme and my collection descriptions are not displaying on my collection pages. I have linked the collection (there is more) that is missing the description and a screen shot that the description is in place on the collection’s backend. I have read multiply post about coding under the collection - templet section however, under templet I only have collection.json. I do have under sections/ collection.liquid and I have attched the coding under that tab j have attached the coding under section/ collection.liquid in case the problem is in this code. Any help would be awesome!

Traveling Aromatherapy Bundles – PennyBlossomShop

I also do not see a code for collection templates in the coding section

Under Sections I do have collection.liquid and here is the coding under that -

{% liquid
assign products_per_page = section.settings.products_per_row | times: section.settings.number_of_rows
assign use_masonry = false

if section.settings.layout == ‘masonry’
assign use_masonry = true
endif

assign show_filters = false
if section.settings.show_filters
assign show_filters = true
endif

assign show_sorting = false
if section.settings.sorting
assign show_sorting = true
endif

assign show_collection_image = false
if collection.image and section.settings.show_collection_image
assign show_collection_image = true
endif
%}

{% 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_filters %}

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

{{ collection.title }}

{% endif %}

{% if collection.description != blank %}

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

{% if show_filters or show_sorting %}

{% if show_filters and collection.filters.size > 0 %}
{% render "faceted-filters", filters: collection.filters, class_prefix: 'collection', %}
{% endif %} {% if show_sorting %}
{{ 'collections.collection.sort_title' | t }}:

{% assign current_sort = collection.sort_by | default: collection.default_sort_by %}


{% endif %}
{% endif %}

{% if show_filters and collection.filters.size > 0 %}
{% for filter in collection.filters %}
{% if filter.active_values.size > 0 or filter.min_value.value or filter.max_value.value %}
{%-
render ‘faceted-filters-active’,
show_sorting: show_sorting,
filter: filter,
filters: collection.filters,
class_prefix: ‘collection’,
clear_url: collection.url,
%}
{% break %}
{% endif %}
{% endfor %}
{% endif %}

{% endif %}
{%- if use_masonry -%}
{%- endif -%}

{%- if collection.handle == ‘all’ and collection.all_vendors.size == 0 and collection.all_types.size == 0 -%}
{%- for i in (1..section.settings.products_per_row) -%}
{%- capture productImage -%}
{%- cycle ‘product-1’, ‘product-2’, ‘product-3’ -%}
{%- endcapture -%}
{%- assign image = productImage | placeholder_svg_tag: ‘placeholder-svg’ -%}

{%- render ‘home-onboard-product’, image: image -%}
{%- endfor -%}
{%- else -%}
{% for product in collection.products %}
{%
render ‘product-list-item’,
product: product,
%}
{% else %}
{% capture continueLink %}
{{ ‘collections.collection.continue_link’ | t }}
{% endcapture %}

{{ 'collections.collection.empty_html' | t: continue_link: continueLink }}

{% endfor %} {%- endif -%}

{%
render ‘pagination’,
paginate: paginate,
%}
{% endpaginate %}

{% schema %}
{
“name”: “Collection pages”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_collection_image”,
“label”: “Show collection image”
},
{
“type”: “checkbox”,
“id”: “show_description”,
“label”: “Show description”
},
{
“type”: “checkbox”,
“id”: “sorting”,
“label”: “Enable sorting”,
“info”: “Parameters include: best selling, A-Z, newest to oldest, etc.”
},
{
“type”: “checkbox”,
“id”: “show_filters”,
“label”: “Enable filtering”,
“default”: true
},
{
“type”: “select”,
“id”: “layout”,
“label”: “Layout”,
“options”: [
{
“value”: “default”,
“label”: “Default”
},
{
“value”: “masonry”,
“label”: “Masonry”
}
],
“default”: “default”
},
{
“type”: “range”,
“id”: “products_per_row”,
“label”: “Products per row”,
“min”: 2,
“max”: 4,
“step”: 1,
“default”: 3
},
{
“type”: “range”,
“id”: “number_of_rows”,
“label”: “Rows”,
“min”: 1,
“max”: 12,
“step”: 1,
“default”: 3
}
]
}

{% endschema %}

Hi @PennyBlossom ,

I have checked your website and yes, it’s possible to add collection description on collection pages. But I have to do some custom coding on your theme to achieve this functionality.

Thanks,

How would we make this happen?