NEWSLETTER
{% if section.settings.mode != 'disabled' %}
{% endif %}
{% schema %}
{
"name": "Popup",
"settings": [
{
"type": "select",
"id": "mode",
"label": "Display mode",
"default": "disabled",
"options": [
{
"value": "enabled",
"label": "Enabled"
},
{
"value": "testing",
"label": "Test mode"
},
{
"value": "disabled",
"label": "Disabled"
}
],
"info": "Test mode displays your popup each time even after dismissing it. Switch to Enabled once you are happy with how your popup looks."
},
{
"type": "range",
"id": "popup_seconds",
"label": "Delay",
"info": "Delay is disabled in theme editor for visibility",
"default": 5,
"min": 2,
"max": 60,
"step": 1,
"unit": "sec"
},
{
"type": "range",
"id": "popup_days",
"label": "Frequency",
"default": 30,
"info": "Number of days before a dismissed popup reappears",
"min": 2,
"max": 30,
"step": 1,
"unit": "day"
},
{
"type": "header",
"content": "Content"
},
{
"type": "text",
"id": "popup_title",
"label": "Heading",
"default": "Sign up and save"
},
{
"type": "richtext",
"id": "popup_text",
"label": "Text",
"default": "
{%- if section.settings.popup_title != blank -%}
{%- if section.settings.enable_newsletter -%}
{{ section.settings.popup_title }}
{%- endif -%}
{%- if section.settings.popup_text != blank -%}
{{ section.settings.popup_text }}
{%- endif -%}
{%- unless section.settings.enable_newsletter -%}
{%- if section.settings.button_label != blank and section.settings.button_link != blank -%}
{%- endif -%}
{%- endunless -%}
{%- if section.settings.enable_newsletter -%}
{%- endif -%}
{%- render 'newsletter-form', section_id: section.id, snippet_context: 'popup' -%}
{%- endif -%}
{%- if section.settings.button_label != blank and section.setting-s.button_link != blank %}
{%- endif -%}
Entice customers to sign up for your mailing list with discounts or exclusive offers.
" }, { "type": "header", "content": "Newsletter" }, { "type": "paragraph", "content": "Customers who subscribe will have their email address added to the 'accepts marketing' [customer list](/admin/customers?query=&accepts_marketing=1)." }, { "type": "checkbox", "id": "enable_newsletter", "label": "Enable newsletter", "default": true }, { "type": "header", "content": "Button" }, { "type": "text", "id": "button_label", "label": "Button label" }, { "type": "url", "id": "button_link", "label": "Button link" } ], "blocks" : [] } {% endschema %}