Where can I translate/update this text?

Hey all, where or how can I update the text of this (the text above, the button, and the placeholder text)

bump.

Hey @justinf! This can be addressed in the Custom JavaScript section of your blog settings. The below comment has a code sample you can use to update the text to whatever you want.

Let me know if that works for you!

It did! Only thing I can’t figure out is how to change the text in the button itself (“Subscribe”)

Custom text for the button itself will require a tad more JavaScript like this:

document.getElementById('subscribe-btn').value = "Custom Text";
1 Like