Im trying to do this on my own but having some trouble. I am using the Simple Shopify Theme and want to keep the Collection title on the top of the page, but the collection description below the products. How can I do this?
{% for product in collection.products %}
{% if collection.products.size == 1 %}
{% assign grid_item_width = ‘medium-up–one-third small–one-whole’ %}
{% else %}
{% assign grid_item_width = ‘medium-up–one-third small–one-half’ %}
{% endif %}
{% include ‘product-grid-item’ %}
{% else %}
{% comment %}
Add default products to help with onboarding for collections/all only.
The onboarding styles and products are only loaded if the
store has no products.
{% endcomment %}
{% if shop.products_count == 0 and collection.handle == ‘all’ %}
{% unless onboardingLoaded %}
{% comment %}
Only load onboarding styles if they have not already been loaded.
{% endcomment %}
{% assign onboardingLoaded = true %}
{% endunless %}
{% assign collection_index = 1 %}
{% for i in (1..6) %}