How do I show price variants in Debut Theme?

Hello,

I realized that our Debut theme hasn’t been updated and we don’t have the “from lowest price html” feature available. We’ve done a lot of custom coding so I would prefer to not update our theme.


How can I change how our products display in collections? How can we show the price range through coding?

Thank you!

@yolandaowens

Edit Code → Sections → collection.liquid

Go to line 30( just for initial Debut Theme without any plugins installed and modifications) otherwise try to search for “product-card-grid“

{%- if product.first_available_variant.title != "Default Title" -%}
        
        {%- endif -%}

Thank you for your response. Am I adding this code before

{% include ‘product-card-grid’, max_height: max_height %}

or after? Do I need to delete or replace anything?

Thank you!