How do I display 'More Colors' under product titles with multiple color options?

I want to add the words “More Colors” underneath the product title, but only when that specific product actually has more colors available. Some of the threads on this topic give some code, but I cannot seem to figure out exactly where the code goes. Any help would be much appreciated.

I am using the minimal theme.

https://outerspaceaccessories1.myshopify.com/

Hey, @Carloshdzz26

There’s actually a workaround you could utilize to accomplish this without any coding required. You can edit your products ‘Vendor’ field and paste the text ‘More Colors’ into the vendor fields for the products with multiple color variants. I’ve taken a screen recording here to show you what it looks like in action.

Let me know if this helps! If there is anything else I can help you with, please let me know.

Hi Carlo

You need to add this code in your product-grid-item.liquid at line 73

{% if product.options contains 'Color' %}
	

	  More Colors...
	

{% endif %}

Now all products with more than 1 color will show the “More Colors Available” text.

Hope this helps!

Where can I find this file for Debut theme?