Subtitle list Metafields
For example cases only:

For bullet points displayed on collections:
Add this line of code in the product-item.liquid file around lines 215 to 219 after the endif statement

{% if product.metafields.custom.bulletpoints %}
<div class="mb-4">
{{ product.metafields.custom.bulletpoints }}
</div>
{% endif %}
create a custom product metafield and name it bulletpoints
keep the namespace custom.bulletpoints and choose muli-line text


Next, go into each of your products and where it says bulletpoints, add in the content seperated by <br> for creating a list

Last updated