Add custom text to the account/subscribe page

Hi,

For reference my website is thepassprints.com.

I’m using Dawn theme. In the footer I’d like to use the Email Signup feature. This feature allows customers to input their email address. Shopify then automatically emails them a, “Confirm you’d like to subscribe,” email, which can be customized in customer notifications. In that email there is a button/link which takes them back to your website once they confirm they’d like to subscribe, but I can’t find this page within the editor or code.

I’d like to add some custom text to this page, https://thepassprints.com/account/subscribe?token=o6NCwM1VZ1IGgs4AgNsiWZv7W7Xtc7obc0tKnQAxEYdmvjGdDcmoqt85-3SP1ghH5ZbGDnC8hLZ63FN9f7ouFJJrnif_qhzWBHag41LnFu8=. Can somebody help me find it so I can add some text. I’d like the page to say, “Thanks for subscribing! For 25% off your first order, please use code SUBSCRIBE25 at checkout, or shop now with the discount automatically applied by clicking here: https://thepassprints.com/discount/SUBSCRIBE25.”

I tried looking for the file in the code, but couldn’t fine it. Help!

Thanks

Alyx

Email signup in the footer:

The account/subscribe page

@alyxklem - love this post. You made me ponder for a bit and I went and checked my own store just to see if this is true. (I had double opt in disabled - had to enable it to recreate the behavior you’ve shown)

  • This page is actually fully rendered in by Shopify and it’s not present in the theme’s code
  • Shopify does not expose a Liquid template for this URL. “/account/subscribe?..”

So to get around this I added this snippet of code to my theme.liquid (add it anywhere)


Here’s how that looks like now on my thank you for subscribing page - this script literally overrides the page of sorts. But you can be little less intrusive and prolly inject it with a bit more grace by asking chatGPT nicely and providing it a target class / div under which you need the code to be displayed :slightly_smiling_face:

Hope this helps someone who stumbles into this! Please mark this as a solution so that it can be helpful to others :heart:

Amazing! Thank you very much.