Shopify themes, liquid, logos, and UX
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?
Solved! Go to the solution
This is an accepted solution.
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 %}
<ul>
{% assign bullet_points = product.metafields.custom.points | split: ',' %}
{% for point in bullet_points %}
<li>{{ point | strip }}</li>
{% endfor %}
</ul>
{% endif %}
@sufyanahmed can you please share this page link here you want it?
This is an accepted solution.
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 %}
<ul>
{% assign bullet_points = product.metafields.custom.points | split: ',' %}
{% for point in bullet_points %}
<li>{{ point | strip }}</li>
{% endfor %}
</ul>
{% 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!
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025