Hi all, I currently have my email newsletter sign up in my footer. I would like to have a dedicated page / URL to allow my customers to sign up through that page and so I can send them a link to signup. I am running on the Debut theme - does anyone have any advice?
Hi @KieranC
You can have a look at AVADA Email Marketing. The app helps you create sign-up forms/popups and insert them into any pages on your site easily.
This feature is available in the free plan.
You can also consider some page builder apps such as:
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!
@KieranC hello
You create a page for newsletter ex “Newsletter” and copy this newsletter code from footer.liquid. The page.newsletter.liquid might look like this
{{ page.title }}
{{ page.content }}
{%- assign formId = 'ContactFooter' -%}
{% form 'customer', id: formId, novalidate: 'novalidate' %}
{%- if form.posted_successfully? -%}
{{ 'general.newsletter_form.confirmation' | t }}
{%- endif -%}
{{ 'general.newsletter_form.submit' | t }}
{% if form.errors contains 'email' %}
{{ 'general.accessibility.error' | t }}
{% include 'icon-error' %}
{{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}.
{% endif %}
{% endform %}
Hi there, thanks for getting back to me. Where exactly would I embed this?
Thanks!