Last active
October 3, 2017 19:22
-
-
Save lassiter/5f0c8a70a0591b8af4627a0923adb0f9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
ga('ec:addProduct', { // Provide product details in an productFieldObject. | |
'id': 'P12345', // Product ID (string). | |
'name': 'Android Warhol T-Shirt', // Product name (string). | |
'category': 'Apparel', // Product category (string). | |
'brand': 'Google', // Product brand (string). | |
'variant': 'black', // Product variant (string). | |
'price': '29.20', // Product price (currency). | |
'coupon': 'APPARELSALE', // Product coupon (string). | |
'quantity': 1 // Product quantity (number). | |
}); | |
ga('ec:setAction', 'purchase', { // Transaction details are provided in an actionFieldObject. | |
'id': 'T12345', // (Required) Transaction id (string). | |
'affiliation': 'Google Store - Online', // Affiliation (string). | |
'revenue': '37.39', // Revenue (currency). | |
'tax': '2.85', // Tax (currency). | |
'shipping': '5.34', // Shipping (currency). | |
'coupon': 'SUMMER2013' // Transaction coupon (string). | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TODO: Determine the WooCommerce PHP Variables and Input them into the header of the custom pages.