What's your biggest current challenge? Have your say in Community Polls along the right column.

Customising Shopify account sign up page for email permisson

Customising Shopify account sign up page for email permisson

Franrulzok
Tourist
23 0 1

Hi, I'm looking to add a checkbox to my Shopify account sign up page where people can choose (or not choose) to receive marketing communications. Is this possible?

 

I'm on Woodstock theme. URL: https://leadingsolutions.net.au/

 

Similar to this...

 

Screenshot 2024-11-15 122231.png

Replies 2 (2)

whyshop
Shopify Partner
27 6 1

customize your theme. Swich to edit code model, find the  "section/main-register.liquid"

find the code

    {%- if form.errors contains 'email' -%}
      <span id="RegisterForm-email-error" class="form__message">
        <span class="svg-wrapper">
          {{- 'icon-error.svg' | inline_asset_content -}}
        </span>
        {{ form.errors.translated_fields.email | capitalize }}
        {{ form.errors.messages.email }}.
      </span>
    {%- endif -%}

add this code below

 <input type="checkbox" checked>Emails me with news and offers

 

QQ20241115-120842@2x.png

Need a Shopify Specialist? Chat on WhatsApp
Contact iwhyshop@gmail.com for the solutions you need
Problem Solved? ✔Accept and Like solutions to help future merchants
Follow me on Facebook iwhyshop, Susbcribe to my YouTube iwhyshop.Author of app"Ws Instant Bulk Editor"-Batch edit prices instantly without complicated tasks

Franrulzok
Tourist
23 0 1

Ok thanks that worked, but how do you make it so it actually signs them up to emails and marks their profile as 'subscribed' ? Thanks,