Write on multiple multiple product pictures?

Topic summary

A user seeks to add text overlays (like “Enjoy Massive Discounts”) to product images across their Shopify store.

Initial Solution:

  • Shopify apps like “Easy Watermarks” or “PixPix Image Editor” can batch-apply text to multiple images
  • Manual alternatives include Canva or Photoshop for pre-upload editing
  • CSS overlays can display text without modifying image files directly

Selective Application:
The user then asks how to add “Fast Shipping” text only to specific products (e.g., USA-sourced items already tagged).

Recommended Approach:

  • Use Shopify’s tagging system (add tag like fast-shipping to relevant products)
  • Modify Liquid template files (product-card.liquid or product-template.liquid) to check for tags
  • Display conditional labels styled with CSS only on tagged products

This method avoids image modification while targeting specific inventory. The user expressed satisfaction with the solutions provided.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

I need to know how to write a note on all my product pictures, for example Write “Enjoy Massive Discounts”

Hi @Essawy ,

You can add a note like “Enjoy Massive Discounts” to all your product pictures using a Shopify app like “Easy Watermarks” or “PixPix Image Editor.” These apps let you apply text or watermarks to multiple images at once. Alternatively, if you prefer manual editing, you can use Canva or Photoshop to overlay the text before uploading images to your store. If you’re comfortable with coding, you can add a CSS overlay to display the message on all product images without modifying the actual files.

Thanks for your answer

Now How about if i need to write on selected products, for example, my dropshipping store has items from USA already have a tag Fast shipping, How to write Fast shipping on those selected products?

@Essawy ,

If you want to display “Fast Shipping” on selected products without modifying the images, you can use Shopify’s built-in tagging system and a bit of Liquid code. First, add a tag like fast-shipping to the relevant products. Then, modify your product-card.liquid or product-template.liquid file to check for this tag and display a label accordingly. You can style it with CSS to make it stand out. This way, only tagged products will show the “Fast Shipping” label without affecting other products.

Thanks so much