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:
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
orsections/collection-template.liquid
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 %}