Can product variations be displayed under product names in the debut theme?

Hi,

I am using the free debut theme. It is possible to display product variations (clothing sizes) underneath the product names?

I have attached a photo for reference.

P/word: dautri

https://www.bohobungalow.com.au/

Hi BohoBungalow

If you are using debut theme then edit code and search this file product-price-listing.liquid and add code in footer. I also attach image how to edit code. Follow this code.

{% assign hide_default_title = false %}
{% if product.variants.size == 1 and product.variants.first.title contains ‘Default’ %}
{% assign hide_default_title = true %}
{% endif %}

{% for variant in product.variants %} {% if variant.available == true %} {% unless hide_default_title %} {{ variant.title }} {% endunless %%} {% endif %} {% endfor %} span.variant-select { display: flex; padding-top: 6px; } option.variant-type { border: 1px solid; border-radius: 5px; padding: 4px; margin: 2px; }

If helpful then please Like and Accept Solution.
Skype: live:hardikradadiya355
Thanks