How can I change the 'no products available' text on my collection page?

Hi there,

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’.

Could someone please help me figure this out?

Screenshot attached below:

@jevyco - please check theme default data for collection page and check if you have an option to change it from there, else need to do via coding

Hello @jevyco ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to collection-template.liquid file or similar

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.

Transcy