Versions Compared

Key

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

...

...

Test the personalisation live on the website and see the effects on the /wiki/spaces/DEMO/pages/1003323397:

...

(lightbulb) Tips

A white paper or extra information can be offered in exchange for the profile's email address.

...

Expand
titleHow can I automatically fill in and hide the newsletter checkbox?

To autofill the checkbox, the following can be added to the JavaScript box of the variant:

document.getElementsByClassName("sqzly-checkbox")[0].setAttribute("checked", "true");

To hide the completed checkbox, the following can be added to the CSS box:

Code Block
{{ cssPrefix }} .sqzly-fields label {

display:none !important;

}

Example JavaScript and CSS box:

...