Hi there! I’ve been trying to find a solution to remove the heading in the collection list - each collection has a heading and a button (Prestige theme). If a heading is not set, then the collection name is used, which is kinda repetitive. I researched similar solutions in the Shopify community and tried copying different codes offered, but none of them worked. Can you assist with it?
Website: https://www.falassen.com/
I temporarily removed the password.
Thanks
1 Like
@dominelor07 - can you please provide collection link where you want to hide the title?
1 Like
@dominelor07
Please try this code 1. Go to Online Store->Theme->Edit code 2. Asset->/theme.scss.liquid–>paste below code at the bottom of the file.
.CollectionItem .SectionHeader__Heading.SectionHeader__Heading {display:none !important;}
Thanks!
1 Like
@dominelor07
sorry for that issue can you try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
#section-collection-list .CollectionItem .Heading {
display: none;
}
1 Like
It’s right there on the homepage. Headings are used above the button and there is no way to leave it blank. If I leave them blank, then collection title is being used.
@dominelor07 - please add his css to the very end of your theme.scss.css file and check
#section-collection-list .CollectionItem .Heading{display:none; visibility:hidden;}
Thank you, your code worked!
Hi! I’m working with the same theme but can’t get the collection’s name to be the one in the button like yours :(. Would you mind sharing the en.json code of the collection with me?