Hi I am using the venture theme. I want my collection descriptions to appear below the actual products. right now my long collection description is above the products and i don’t like it. here is my code. can someone be so generous as to tell me how to fix it in the liquid? Thank you soooooo much… https//:www.chickychickyblingbling.com
Show More
{% paginate collection.products by 20 %}
{% for product in collection.products %}
{% include ‘product-card’, product: product %}
{% 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 %}
{% assign collection_index = 1 %}
{% for i in (1..10) %}
{% case i %}
{% when 7 %}
{% assign collection_index = 1 %}
{% when 8 %}
{% assign collection_index = 2 %}
{% when 9 %}
{% assign collection_index = 3 %}
{% when 10 %}
{% assign collection_index = 4 %}
{% endcase %}
{% capture current %}{% cycle 1, 2, 3, 4, 5, 6 %}{% endcapture %}
{{ ‘product-’ | append: current | placeholder_svg_tag: ‘placeholder-svg’ }}
{{ ‘homepage.onboarding.product_title’ | t }}
$19.99
{% assign view_string_length = ‘products.product.view’ | t | size %}
{{ ‘products.product.view’ | t }}
{% assign collection_index = collection_index | plus: 1 %}
{% endfor %}
{% else %}
{% comment %}
If collection exists but is empty, display message
{% endcomment %}
{{ ‘collections.general.no_matches’ | t }}
{% endif %}
{% endfor %}
{% if paginate.pages > 1 %}
{{ paginate | default_pagination | replace: ‘« Previous’, ‘←’ | replace: ‘Next »’, ‘→’ }}
{% endif %}
{% endpaginate %}
