Versions Compared

Key

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

...

#Object:objid# is a hashtag to get the right column from Objects. But you can use anything, like a phone number, or email or good option - #Object:uuid# (which is the random hash).

...



Step 3 - Recording Referrers into new user's data


This step is only needed when tracking referrers. Each new object will receive this incoming UTM mark with some user data you choose from the user who was a referrer. 

...

In this case you will need to take care of Errors in JS and change:


Button's JS Action (recommended)Custom JS
if (navigator.share) {
share()
} else {
alert('Sharing not works');
}
if (navigator.share) {
document.getElementById("btnShare").onclick = share
} else {
document.getElementById("btnShare").onclick = () => alert('Sharing does not work');
}


In the Custom JS case, you need to create buttons or link on your own and also you must take into account different naming for each element, so name each sharing Custom JS block's button as "btnShare", "btnShare1", "btnShare2" and so on, other wise only the first script will work. 

...