Hey there,
I’d like to add a specific trust badge above the add to cart button on the product page that only addresses half of my products.
Im very inexperienced in liquid but have some small coding notions..
I guess that way to go is to separate my products into 2 categories (1 with the trust badge, 1 without the trust badge) and then edit the product page template only for the category with trust badge and add the image above the add to cart button.
Does anyone know how to do this? All the help is extremely welcome 
I’m using the Brooklyn theme fyi.
thanks and have a good day
Ideally if I could create these 2 product categories by adding a specific tag to the products that should show the specific trust badge would be amazing 
Hi, you can dig out product-template.liquid.
Then find this part : (at around line 232)
Add this part : (to line 233)
```css
{% if product.tags contains 'trustMe' %}
{% endif %}
After that it should look like this :
{% if product.tags contains 'trustMe' %}
{% endif %}
trustMe is the tag you add to the products you want the badge to appear.
Replace logo.png with you badge image,eg trust.jpg.
Upload the image to your assets and rename as needed,eg : trust.jpg
Thank you so much for your help :))))