Metafield Lists - Bullet Points instead of "and"

I’m using metafield lists for underneath my product descriptions and I noticed if your list is less than 3 items, it will automatically use the word “and” instead of bullet points. Is there any way to edit the code so that it always displays as bullet points?

For example, I want it to display as:

  • Free Us Shipping
  • Free US Returns

But instead it displays as:

“Free US Shipping and Free US Returns”

As soon as I list three items, it switches to bullet points.

Thanks!

1 Like

@taylorregan

yes you have create your meta filed add this code

{%- if product.metafields.custom.product_points != blank -%}
                
                  

                  {% for product_point in product.metafields.custom.product_points.value  %}
                    - {{ product_point }}
                  {% endfor %}
                  

                

                {%- endif -%}
1 Like

Hi @KetanKumar

I’m also having this issue - where do you add this code?

Thanks