View bigcommerce-convtracking-satismeter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function() { window.satismeter = window.satismeter || function() {(window.satismeter.q = window.satismeter.q || []).push(arguments);};window.satismeter.l = 1 * new Date();var script = document.createElement("script");var parent = document.getElementsByTagName("script")[0].parentNode;script.async = 1;script.src = "https://app.satismeter.com/satismeter.js";parent.appendChild(script);})(); | |
var orderId = "%%ORDER_ID%%"; | |
if (orderId) { | |
satismeter({ | |
writeKey: "YOUR_WRITE_KEY", | |
userId: orderId, | |
traits: { | |
email: "%%ORDER_EMAIL%%", |
View bigcommerce-blueprint-satismeter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function() { window.satismeter = window.satismeter || function() {(window.satismeter.q = window.satismeter.q || []).push(arguments);};window.satismeter.l = 1 * new Date();var script = document.createElement("script");var parent = document.getElementsByTagName("script")[0].parentNode;script.async = 1;script.src = "https://app.satismeter.com/satismeter.js";parent.appendChild(script);})(); | |
var firstName ="%%GLOBAL_CurrentCustomerFirstName%%"; | |
if (firstName !== "" && firstName !== "Guest") { | |
satismeter({ | |
writeKey: "YOUR_WRITE_KEY", | |
userId: "%%GLOBAL_CustomerId%%", | |
traits: { | |
name: firstName + " %%GLOBAL_CurrentCustomerLastName%%", |
View bigcommerce-satismeter.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{#if customer}} | |
<script> | |
(function() { window.satismeter = window.satismeter || function() {(window.satismeter.q = window.satismeter.q || []).push(arguments);};window.satismeter.l = 1 * new Date();var script = document.createElement("script");var parent = document.getElementsByTagName("script")[0].parentNode;script.async = 1;script.src = "https://app.satismeter.com/satismeter.js";parent.appendChild(script);})(); | |
satismeter({ | |
writeKey: "YOUR_WRITE_KEY", | |
userId: "{{ customer.id }}", | |
traits: { | |
name: "{{ customer.name }}", | |
email: "{{ customer.email }}" | |
} |