Hi Andrew,
I think there may be something else - I just did a test transaction in Firefox, and I got this error in Javascript console:
Error: __utmSetTrans is not defined
Source File: https:// https://www.xxxxxxx.com/ checkout_success.html
Line: 45
However, when I see source the way you showed me (thanks again!).. i see this in header:
function zen_utmSetTransX() {
var frmUTM = document.createElement("form");
frmUTM.id = "utmform";
frmUTM.name = "utmform";
frmUTM.style.display = "none";
var txtUTM = "";
txtUTM += "\n <textarea id="utmtrans">\n";
txtUTM += " UTM:T|141|GYGH|11,79||7,80|Plano|Texas|United States\n";
txtUTM += " UTM:I|141|SDRW|SD and miniSD Card Reader / Writer|M3, G6, Passcard3|3,99|1\n";
txtUTM += "\n </textarea>\n";
frmUTM.text = txtUTM;
document.body.appendChild(frmUTM);
__utmSetTrans();
}
So.. product is correctly being made and everything. However, __utmSetTrans(); doesn't want to work - this may be a google problem. Hopefully 100asa can get google to respond accordingly :)
I have an idea however.. what if we were to copy __utmSetTrans(); and put into the jscript_google_analytics.php file?