How to remove product label configured by product label by ovaly

Hi, please advise where i can remove the product label which i have confgured using product label by ovaly which has been removed from shopify. I couldnt figure out how to remove the label “best seller” from my label.

I have contacted archetypethemes support and they advise me to look for the developer which has now gone. So it hasnt been very helpful at all. :disappointed_face:

Hey @Serene_Teo1

Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

Best Regards,
Moeed

thanks. This is our website link - https://www.shop-bareskinelements.com.sg/

Hi! @Serene_Teo1

You could search for your main css file (app.css, main.css, theme.css…, it depends on your theme) and add the following code at the end of the file:

a.fhs-image {
    display: none !important;
}

This will only hide the label, it will still exist, but no one will be able to see it.

In order to completely remove it I’d look for a file along the lines of “product-card.liquid”, “card-product.liquid”…, then CTRL + F and look for fhs-image, it may be hard-coded in there since it seems all products are best seller. If this isn’t the case, maybe the app is still being imported in “theme.liquid”.

I hope this was of help!

Don’t hesitate to reach out for more questions.

Thanks. I will try to look for it. I wish the search function could search the code level within the files.

If you enter the file, click anywhere in the code, press CTRL + F, search any term and press enter, you move automatically to where the text is.

You can also download the entire theme code, open it on an editor (in my case VSCode) and then search for a term globally (this will show you every single instance of your search term across all files)