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>fbq('track', 'Purchase', {value: _thrive_order.order.bump.total_readable, currency: _thrive_order.order.currency});</script> |
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() { | |
ga('require', 'ecommerce'); | |
ga('ecommerce:addTransaction', { | |
'id': _thrive_order.order.id, | |
'revenue': _thrive_order.order.total, | |
'tax': _thrive_order.order.tax, | |
'currency': _thrive_order.order.currency | |
}); |
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
event: string (order.success) | |
thrivecart_account: string (Your account's subdomain) | |
thrivecart_secret: string (Your account's 'secret word' parameter) | |
base_product: int (The ID of the front-end product this order relates to) | |
order_id: int (Unique order ID) | |
currency: string (Uppercase, 3-character currency code - USD, GBP, etc) | |
customer_id: int (Customer ID) | |
customer_identifier: string (Customer identifier from your payment processor - may be null) | |
customer: array (name, firstname, lastname, email, address) | |
order: array: |
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
<ul> | |
<li>Bullet point #1</li> | |
<li>Bullet point #2...</li> | |
<li class="thrivecart-button" data-thrivecart-account="[your subdomain]" data-thrivecart-product="1">Click here to buy!</li> | |
</ul> | |
<script async src="//thrivecart.com/embed/v1/thrivecart.js"></script> |