Adding an image to native homepage pop-up in Prestige Theme?

Topic summary

A user asks how to add an image to the newsletter popup in Shopify’s Prestige theme, noting that other themes include this feature by default but Prestige does not.

Solution provided:

  • Navigate to theme code editor
  • Open newsletter-popup.liquid file
  • Locate line 20 containing {%- if section.settings.title != blank or section.settings.content != blank -%}
  • Insert an <img> tag above this line with custom styling
  • Upload the image via Content > Files section and copy its URL
  • Replace placeholder URL in the code with the actual file URL

The workaround involves manual code editing rather than using theme settings. Another user also expressed interest in this functionality.

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

Hi all! Is it possible to add an image to the homepage/newsletter popup in the prestige theme? Having an image field is available by default on other themes but I don’t see that as an option for prestige. Any help would be much appreciated!

6 Likes

Would also love to know!

1 Like

Hi, yes it is. If you’d like to add a logo or image at the top of the popup before any text:

  1. Navigate to your theme and ‘edit code’

  2. Open the ‘newsletter-popup.liquid’ file

  3. Around line 20 find ’ {%- if section.settings.title != blank or section.settings.content != blank -%}’ and ABOVE this line add:

your image description here

Be sure to replace YourFileURL.jpg with your actual URL. You do this by uploading it first in the Content > Files section, then copying the URL. If the file has already been uploaded, then just copy the URL of course.

Hope this helps!