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
%}
{{ 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 %}
{{ collection.title }}
{% endif %}{% if collection.description != blank %}
{% if show_filters or show_sorting %}
{% assign current_sort = collection.sort_by | default: collection.default_sort_by %}
{% 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 %}
{%- 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 %}

