I use the buy now button for a single product purchase.
I use the Custom Thankyou/Proudct download page.
I have the analytics in the receipt page.
Here is where I am stuck:
Q: What are the variables to pass as
"order-id", // required
"affiliate or store name",
"total",
"tax",
"shipping",
"city",
"state",
"country"
in the pageTracker._addTrans part of the code.
*************************
Currently I use
"[%txn_id%]", // Order ID
"", // Affiliation
"[%mc_gross%]", // Total
"[%tax%]", // Tax
"[%shipping%]", // Shipping
"[%city%]", // City
"[%state%]", // State
"[%country_full%]" // Country
Only the "[%txn_id%]", // Order ID works.
The rest do not.
*******************
I have success with the AddItem pieces with this code)
pageTracker._addItem(
"[%txn_id%]", // Order ID
"[%item_number%]", // SKU
"[%item_name%]", // Product Name
" ", // Category
"[%sale_price%]", // Price
"[%quantity%]" // Quantity
);