Forge Theme - Remove Product Count

Hello,

I am currently using Forge Theme, I would like to implement using the collection list on my homepage, but am struggling to make two changes. My url is www.gloriapatricollective.com

First question, how can I remove the product at the bottom? This is the most important coding change I’d like to make.

Second, can I also remove the title at the bottom?

I’ve tried the coding suggestions found online for other themes and none appear to work.

Thank you,

Michelle

Hi @Michelle103 ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

p.collection-loop__product-count {
    display: none !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

It worked!! Amazing! Thank you!

Is it possible to remove the title below as below?

Hi @Michelle103 , Pls insert this code to your file css:

p.collection-loop__product-count, 
h3.collection-loop__title.animate--text {
    display: none !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes: