I’m looking to edit the text that is displayed on my collection page when there are no products available that match the criteria. Right now, the text that displays reads, ‘No Products Found Use fewer filters or remove all’.
Look for a section of code that displays the “No Products Found” message. Modify the text inside the {% if %} condition to your desired message like this:
{% if collection.products.size == 0 %}
Sorry, no products match your selection
{% endif %}
Save and preview
Hope this can help. Let us know if you need any further support.