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!
Hey Community! As we jump into 2025, we want to give a big shout-out to all of you wh...
By JasonH Jan 7, 2025Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024