how to add bullet points/product features above buy buttons.

Topic summary

A user running the Streamline theme wants to display bullet points or product features above the buy buttons and below the quantity selector, but lacks coding knowledge.

Proposed Solution:
One responder provided a detailed technical approach:

  • Create a product metafield named “points” (type: single line text, list of values) via Settings → Custom Data
  • Fill in feature values for each product
  • Add a custom code block in the theme customizer’s product page
  • Insert provided Liquid code that splits comma-separated metafield values into bullet points

Current Status:
Multiple users requested the store URL to provide specific guidance. The original poster shared www.lactea.pk, and another user asked for a screenshot of the exact area. The discussion remains open as helpers await more details to offer tailored assistance.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

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

www.lactea.pk

Hi @sufyanahmed

Can you take a screenshot of the area you are referring to? Thanks!