hi, im totally unaware of coding, im currently using streamline theme and my product description shows below buy buttons,
the description below is fine but i want to add bullet points/ product main features just above buy buttons and below quantity selector. please guide how to do it?
1 Like
@sufyanahmed can you please share this page link here you want it?
From the admin pannel go to settings → custom data → Create a product metafield with name points and set its type to single line text and then select list of values and save.
Then go to products and you will see points field there fill values in it.
then go to the customzier and open product page and add a custom code block where you want to show bullets
then paste this code there
{% if product.metafields.custom.points %}
{% assign bullet_points = product.metafields.custom.points | split: ',' %}
{% for point in bullet_points %}
- {{ point | strip }}
{% endfor %}
{% endif %}
Hi @sufyanahmed
Please share your store link so I can check it for you
Best,
Daisy
Hi @sufyanahmed
Can you take a screenshot of the area you are referring to? Thanks!