I have a page load rule to track my order confirmation data.
The rule consists of criteria to ensure it fires only on the order confirmation page.
The rule also specifies that Analytics variables for State and Zip fire (based on pre-configured Data Elements calling js vars on page)
Finally there is Custom Page Code (in the Analytics section):
var s=window.s;
s.purchaseID=my_cart_id;
s.products=my_sc_order_products;
I can see the rule fire without errors in the console using Satellite debugging (_satellite.setDebug(true)), however none of the specific SiteCatalyst variables from the rule are being fired (other SiteCat vars do fire). I'm using Charles to sniff the packets and evaluate the output from the page code.
Any additional ideas on how to troubleshoot would be appreciated.
Thanks!