Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleConfiguring the SMS consent snippet

Once you have turned the SMS sign up toggle ON and entered your list code(s), you will have additional options in the Code Editor - detailed next.

With the SMS toggle turned on, the SMS required consent snippet will be added to your page by WMC with the “Billing_Phone Number” field.

Panel
panelIconId1f4cc
panelIcon:pushpin:
panelIconText📌
bgColor#FFF0B3

This snippet is commented out by default. You will need to remove the comment around this snippet and customize your “sms-disclaimer-text” before saving and publishing the order page.

image-20240509-202203.png

You can customize this snippet in 2 different ways.

  • By default, the checkbox is added by WMC. If the checkbox remains part of the snippet, you may move this snippet anywhere in the code editor (anywhere on the page for the customer).

  • You also have the option to remove the checkbox from the snippet. IF you choose to remove the checkbox, the snippet sms-disclaimer-textmust remain directly underneath the 'billing_phoneNumber' field in the code editor.

See screenshot below to code your page without a checkbox:

image-20240521-214430.pngImage Added
Panel
panelIconId1f4cc
panelIcon:pushpin:
panelIconText📌
bgColor#FFF0B3

WMC will throw an error and not allow you to save the page if the checkbox is removed and the snippet has been moved away from the billing phone number field on the page.


Panel
panelIconId2734
panelIcon:eight_pointed_black_star:
panelIconText✴️
bgColor#FFBDAD

If you have trouble finding the code on your order page, please look through these questions first..

  1. Are you adding code to the page via a Template?

If so, you will need to manually add the snippet. WMC automatically adds the snippet only if you are building the page from the right hand menu - specifically with the Billing Phone Number field.

  1. Are you copying your code from another WMC order page?

If so, you will need to manually add the snippet. WMC automatically adds the snippet only if you are building the page from the right hand menu - specifically with the Billing Phone Number field.

  1. Are you trying to add the code via the right hand menu “SMS Opt-Out” snippet?

image-20240521-215747.pngImage Added

This snippet has been in the sidebar menu since WMC went live several years ago. It is mostly used by non-US affiliates to opt their customers OUT of receiving text messages. Please do not use this snippet. (The new SMS code is not available on the sidebar menu- it is automatically added as part of the billing phone number field.)

✴️ If none of these resolve your issue, please reach out to Sarah Smiley to investigate.

Here is the code snippet incase you need to manually add it to your page:

Code Block
    <div>
      <label for="sms-signup-consent">Receive updates via text message</label>
      <input type="checkbox" id="sms-signup-consent" name="smsSignupConsent">
    </div>
    
    <div id='sms-disclaimer-text'>
      {Enter your phone number | Check here } to receive automated texts such as {investment alerts | health news | content}, reports and marketing from {LLC name or DBA} even if your number is on a do not call list. Your consent is not required to make any purchase. Max {##} msgs/month. By opt-ing in you agree to our Privacy Policy and SMS Terms (including dispute resolution process). Reply STOP any time to opt out.
    </div>    
    </div>

Expand
titleCustomer view & active consent

The left side image shows an example of the snippet without the checkbox, placed directly under the phone number field.

Panel
panelIconId1f4cc
panelIcon:pushpin:
panelIconText📌
bgColor#FFF0B3

If you choose to use this option, the customer actively consents to SMS messaging by manually entering their phone number in the phone number text box.

Panel
panelIconId1f6d1
panelIcon:octagonal_sign:
panelIconText🛑
bgColor#F4F5F7

Pre-pop and browser auto-fill will be disabled by WMC for the phone number field if this option is used.

The right side image shows an example of the snippet with the checkbox intact and moved to the bottom of the page.

Panel
panelIconId1f4cc
panelIcon:pushpin:
panelIconText📌
bgColor#FFF0B3

If you choose to use this option, the customer actively consents by manually checking the checkbox next to the SMS disclaimer message.

Panel
panelIconId1f6d1
panelIcon:octagonal_sign:
panelIconText🛑
bgColor#F4F5F7

This checkbox is NOT allowed to be pre-checked for the customer.

...