Hi @omgbeauty
Just paste below code again and look for line number 64 and add your text after removing the line that I added there to explain it and it’ll work.
{% layout none %}
{% if page_description %}
{%- comment %}{% endcomment -%}
{% endif %}
{{ 'stylesheet.css' | asset_url | stylesheet_tag }}
{{ content_for_header }}
{% form 'storefront_password' %}
{{ form.errors | default_errors }}
{% endform %}
{{ 'password.general.enter_store' | t }}
{% if section.settings.background_image %}
{% else %}
{% endif %}
{% if section.settings.logo != blank %}
{% else %}
{{ shop.name }}
{% endif %}
{% unless section.settings.newsletter_details == blank %}
Write here your text after removing this line insted of coming soon text
{% endunless %}
{% form 'customer' %}
{{ form.errors | default_errors }}
{% if form.posted_successfully? %}
{{ 'password.general.thanks' | t }}
{% else %}
{% endif %}
{% endform %}
{% include 'social-icons' %}
{{ 'password.general.powered' | t }}
shopify
{%- assign image_size = '2048x' -%}
{% assign opacity = section.settings.overlay_color_opacity | divided_by: 100.00 %}
{% schema %}
{
"name": "Password page",
"settings": [
{
"type": "header",
"content": "Logo"
},
{
"type": "image_picker",
"id": "logo",
"label": "Logo image"
},
{
"type": "range",
"id": "logo_max_width",
"min": 100,
"max": 600,
"step": 10,
"unit": "px",
"label": "Logo image width",
"default": 300
},
{
"type": "richtext",
"id": "newsletter_details",
"label": "Coming soon message",
"default": "
Coming Soon
Signup for our newsletter and get updated when we launch our site see our newsletter policy.
"
},
{
"type": "range",
"id": "text_size",
"min": 12,
"max": 36,
"step": 1,
"unit": "px",
"label": "Password page message size",
"default": 18
},
{
"type": "color",
"id": "text_color",
"label": "Text Color",
"default": "#000000"
},
{
"type": "header",
"content": "Background"
},
{
"type": "paragraph",
"content": "Choose between a background color or background image."
},
{
"type": "color",
"id": "background_color",
"label": "Background Color",
"default": "#f5f5f5"
},
{
"type": "image_picker",
"id": "background_image",
"label": "Background image"
},
{
"type": "checkbox",
"id": "show_overlay_color",
"label": "Show background overlay color",
"default": false
},
{
"type": "color",
"id": "background_overlay_color",
"label": "Background Image Overlay Color",
"default": "#f5f5f5"
},
{
"type": "range",
"id": "overlay_color_opacity",
"min": 10,
"max": 100,
"step": 10,
"unit": "%",
"label": "Color Overlay Opacity",
"default": 80
},
{
"type": "header",
"content": "Signup Form"
},
{
"type": "color",
"id": "border_color",
"label": "Form Border Color",
"default": "#000000"
},
{
"type": "color",
"id": "button_color",
"label": "Button Background Color",
"default": "#000000"
},
{
"type": "color",
"id": "button_text_color",
"label": "Button Text Color",
"default": "#ffffff"
}
]
}
{% endschema %}
Let me know if that works for you.
Thanks
Sheesh B