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.

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.

See screenshot below to code your page without a checkbox:

image-20240521-214430.pngImage Added

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

If you have

any

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

  1. Are you adding the 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.

✴️ 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>

...