Skip to main content
All CollectionsSmart CollectionsFAQ
How to hide the LimeSpot logo image from a Smart Collection
How to hide the LimeSpot logo image from a Smart Collection

If you see the LimeSpot logo load on a Smart Collection, here is how to hide it from showing up.

Updated over a week ago

Note:
This guide is applicable to customers on LimeSpot Max, Premium, Essentials, and other legacy plans.

Smart collections that are created will automatically hide the Collection icon in the collection page that is created when the icon has an img tag.

Depending on your theme and the way your Collection page is rendered, you may see an image load and disappear. To remove it you will need to add a piece of liquid code to the file in which you have the image element.

Follow these steps to hide the image:

  1. Find the file in your theme's code where the image element for the collection is. It usually will be in the templates/collection.liquid or sections/collection-template.liquid

  2. Look for the image element in the file and add the following liquid code. Put the if statement before and after the image element.

    {% if collection.metafields.LimeSpot.DoNotImport != 'True' %} 
    [ IMAGE ELEMENT IS HERE ]
    {% endif %}
Did this answer your question?