How can I add bullet points to my product pages in Theme Debut?

unefelinevie
Tourist
5 0 1

Hello, I would like to highlight the strengths of my products.

I would simply like to display bullet points at the top of my product pages, just below the price.

I am trying but I am a beginner and not an expert yet !

Can you tell me where I should add the liquid code?

Best regards Kevin

Replies 3 (3)

Zworthkey
Shopify Partner
5581 642 1569

@unefelinevie 
where do you want to display it?
Share screenshot & Store URL.
Thank you.

Zworthkey
Shopify Partner
5581 642 1569

Use like that. if you make it. Add in the product description page.

 

<div class="product\_\_price">

{% include 'product-price', variant: current_variant %}

</div>



<ul>

<li>example1 </li>

<li>example2 </li>

<li>example 3</li>

<li>example 4 </li>

</ul>

<br>

{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}

<div class="product\_\_policies rte">

{%- if shop.taxes_included -%}

{{ 'products.product.include_taxes' | t }}

{%- endif -%}

{%- if shop.shipping_policy.body != blank -%}

{{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }}

{%- endif -%}

</div>

{%- endif -%}