I want to change the message which is visible when a collection is empty
For this particular collection name “Sale” i want to change the message “No product fount” to “No current Sale”
But for other collection it should show the original msg “No product fount” only.
Hello @obito_uchiha01
Go to Edit code,
Search main-collection-product-grid.
Scroll down search sections.collection_template.empty
{% if collection.handle == 'sale' %}
No current Sale
{% else %}
{{ 'sections.collection_template.empty' | t -}}
{% endif %}
If this info Helpful mark my answer approve.
This isn’t working for me…I am putting the collection handle in but the message never changes. Any ideas?
which file you change the message?