Hi there, im building some web with the free shopify theme Venture, and want to edit some part of Newsletter's section.
How to edit the part of "su-email@ejemplo.com" , i want to change it, and show nothing in the box.
thanks, JL.
Solved! Go to the solution
Hi @JLbyone,
Would you mind sharing your store's URL? This is usually a placeholder that you need to remove from your newsletter.liquid file inside the code.
Let us know!
@JHKCreate wrote:Hi @JLbyone,
Would you mind sharing your store's URL? This is usually a placeholder that you need to remove from your newsletter.liquid file inside the code.
Let us know!
Click to expand...<div class="page-width"><div class="section-block section-block--padding"><div class="{% if section.settings.heading != blank or section.settings.subheading != blank %}section-block__header {% endif %}text-center">{% unless section.settings.heading == blank %}<h4 class="h1--mini section-block__title">{{ section.settings.heading | escape }}</h4>{% endunless %}{% unless section.settings.subheading == blank %}<div class="section-block__subtext">{{ section.settings.subheading }}</div>{% endunless %}</div><div class="grid"><div class="grid__item medium-up--two-thirds medium-up--push-one-sixth"><div class="form-vertical">{% form 'customer' %}{{ form.errors | default_errors }}{% if form.posted_successfully? %}<p class="form-success">{{ 'general.newsletter_form.confirmation' | t }}</p>{% else %}<input type="hidden" name="contact[tags]" value="newsletter"><label for="NewsletterEmail-{{ block.id }}" class="label--hidden">{{ 'general.newsletter_form.newsletter_label' | t }}</label><div class="input-group"><input type="email" value="{% if customer %}{{ customer.email }}{% endif %}" placeholder="{{ 'general.newsletter_form.newsletter_placeholder' | t }}" name="contact[email]" id="NewsletterEmail-{{ block.id }}" class="input-group__field" autocorrect="off" autocapitalize="off"><div class="input-group__btn"><button type="submit" class="btn btn--narrow" name="commit">{% include 'icon-arrow-right' %}<span class="icon__fallback-text">{{ 'general.newsletter_form.submit' | t }}</span></button></div></div>{% endif %}{% endform %}</div></div></div></div></div>this is my newsletter.liquid file, you mean remove this line
Click to expand...<input type="email" value="{% if customer %}{{ customer.email }}{% endif %}" placeholder="{{ 'general.newsletter_form.newsletter_placeholder' | t }}" name="contact[email]" id="NewsletterEmail-{{ block.id }}" class="input-group__field" autocorrect="off" autocapitalize="off">Thanks so much for your help, JL.
This is an accepted solution.
<input type="email" value="{% if customer %}{{ customer.email }}{% endif %}" name="contact[email]" id="NewsletterEmail-{{ block.id }}" class="input-group__field" autocorrect="off" autocapitalize="off">
Thanks for your fast reply, i put my code like this, but it shows the same..
User | Count |
---|---|
413 | |
200 | |
145 | |
57 | |
43 |