Wir verwenden PIWIK. Dort gibt es seit einiger Zeit die Möglichkeit Ecommerce & Ziele zu tracken. Dazu muss ein Tracking-Code auf die "Order-Confirmation-Page" gebracht werden, der folgendermaßen aussieht, laut http://piwik.org/docs/ecommerce-analytics/
In welche Datei muss ich diesen Code schreiben und welche JTL-Variablen übergeben mir den richtigen Inhalt?
Und ... JA, ich weiß, dass es dafür ein PlugIn gibt, ich möchte das aber direkt integrieren!
Code:
[...]
[COLOR=#ff0000] // add the first product to the order
[B]piwikTracker.addEcommerceItem[/B](
"9780786706211", // (required) SKU: Product unique identifier
"Endurance: Shackleton's Incredible Voyage", // (optional) Product name
"Adventure Books", // (optional) Product category. You can also specify an array of up to 5 categories eg. ["Books", "New releases", "Biography"]
8.8, // (recommended) Product price
1 // (optional, default to 1) Product quantity
);[/COLOR]
// Here you can add other products in the order
[...]
[COLOR=#ff0000]// Specifiy the order details to Piwik server & sends the data to Piwik server
[B]piwikTracker.trackEcommerceOrder[/B](
"A10000123", // (required) Unique Order ID
35, // (required) Order Revenue grand total (includes tax, shipping, and subtracted discount)
30, // (optional) Order sub total (excludes shipping)
5.5, // (optional) Tax amount
4.5, // (optional) Shipping amount
false // (optional) Discount offered (set to false for unspecified parameter)
);[/COLOR]
// we recommend to leave the call to trackPageView() on the Order confirmation page
piwikTracker.trackPageView();
[...]
In welche Datei muss ich diesen Code schreiben und welche JTL-Variablen übergeben mir den richtigen Inhalt?
Und ... JA, ich weiß, dass es dafür ein PlugIn gibt, ich möchte das aber direkt integrieren!