How to move Collection Description to bottom of page

Hello, friends

Can someone help me move Collection Description to bottom of page, I am using Vindor theme for my website, here is my Collection link: https://kingsawning.com.au/collections/awnings , I recently did some SEO optimization so there is quite some content in the description so it really needs to move to the bottom of the page.

1 Like

There is no main-collection.liquid, please check my screenshoot.

Hi @kingsawning ,
You can move the collection description to the bottom by adjusting the collection template in your theme.

Method 1: Theme Customizer

  1. Go to Online Store β†’ Themes β†’ Customize .
  2. Open the Collection page template.
  3. Check if there is an option for Collection description position .
  4. Set it to Bottom and save.

Method 2: Edit theme code

  1. Go to Online Store β†’ Themes β†’ Edit code .
  2. Open the collection template file. It’s usually:
  • main-collection-product-grid.liquid
  • or collection-template.liquid
  1. Find the collection description code, usually something like:
{{ collection.description }}

or

{{ collection.description | escape }}
  1. Cut that block from the top section.
  2. Paste it below the product grid or near the bottom of the file.
  3. Save and preview.
1 Like