how to add stickers

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.liquid or product-template.liquid files, 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.

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

Hi @Abdul-Basit1 ,

  1. 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.

  1. 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 %}