Hi. I am running Empire theme. I want to move all Collection product descriptions to below the products. Unfortunately I’ve searched all help threads and nothing is viable for my theme at least that I can tell. Please advise how to accomplish.
Thanks in advance.
Hi @Isellfitness
Unless the theme’s layout uses a very flexible CSS grid a theme needs an advanced theme customization to shift features around in the layout of the code.
Generally it’s a matter of finding either the primary collection.liquid template or it’s sections and within that the html for the description and then moving that code in the source order to be below the desired area along with adjusting any relevant CSS or javascript.
This will vary wildly among themes.
A cheap DIY hack is to create metafield definitions to move all the collection descriptions into those metafields … then reference that metafield in a custom-liquid section for OS2.0 compatable themes that have that feature for collection templates. i.e. {{ collection.metafields.content.description }}
If you need this customization then contact me by my email for services.
Contact info in forum signature.
ALWAYS please provide context, examples: store url, theme name, post url(s) , or any further detail in ALL correspondence.
I’m using the Empire theme too and I found this to work for the theme.
-
In your Admin page, go to Online store > Themes
-
Choose the theme you want to edit then click Customize.
-
Open the collection page, by changing the Home page to Collection, then Default collection.
-
In the Template section, click on Collection pages. On the opposite panel, go to the Custom CSS section then place the code below.
@media {
.rich-text,
.rte {
display: none;
}
}
- Returning to the Template section, add a custom liquid section below the Collection pages section, then place the code below.
{{ collection.description }}
Hello @Isellfitness ,
I hope you are well!
Can you please share me the store URL? It will be helpful for me to provide the relevant code which will move the collection product description below the products.