Hi I need to add this type of sticker on my product page, can someone please tell me how can i add this?
Topic summary
A user wants to add promotional stickers (like trust badges or feature icons) to their Shopify product pages, sharing an example image of the desired layout.
Suggested Solutions:
- Theme Settings Approach: Check if the theme has built-in options for adding images to product pages, or use a multi-column section to display the sticker images
- App Solution: Install a dedicated section-building app for easier customization
- Code Method: Manually add images by editing
main-product.liquidorproduct-template.liquidfiles, uploading images through Settings > Files - Metafield Method: For product-specific stickers, create a custom metafield (File type) under Settings > Custom Data, then reference it in the product template code
Status: Multiple viable solutions provided, ranging from no-code theme settings to advanced liquid template customization. The discussion remains open for the original poster to choose their preferred implementation method.
You can try to add a multiple-column section if your theme supports it and copy images above.
Hello @Abdul-Basit1 ,
Check the product page settings maybe there you will find an option to add images like this.
Alternatively you can use an app section.
Regards
Guleria
Hi @Abdul-Basit1 ,
- Add Image in the Product Template (Code Method)
- Go to Online Store > Themes > Edit Code.
- Open sections/main-product.liquid or snippets/product-template.liquid.
- Find a suitable place to insert the image (usually below the product title or price).
- Add this code:
Make sure to upload the image to Settings > Files in Shopify and replace ‘sticker-image.png’ with your actual file name.
- Use a Metafield (For Different Stickers per Product)
If different products need different stickers:
- Go to Shopify Admin > Settings > Custom Data > Products.
- Add a new Metafield (Type: File).
- Go to Products, and under the Metafield section, upload the sticker for each product.
- Modify your product template (main-product.liquid) and add:
{% if product.metafields.custom.sticker_image.value %}
{% assign custom_sticker_image = product.metafields.custom.sticker_image.value %}
{% endif %}
Hi @Abdul-Basit1 , thanks for reaching out.
Regarding your concern, you can go to your theme settings, most themes have a section where you can upload an image to display on the product page.
Please take a look at my screenshot for further details: https://prnt.sc/JJRoJz8eGyKH
I hope my information is helpful to you.
Liz
