Single Country Campaign with campaign and order ID
|
STRATO WEBSHOP TRADETRACKER SINGLE CAMPAIGN / COUNTRY CONVERSION IMPLEMENTATION
You can use the filter options above to select your shop system, the version of your shop. The Version info selection is a short description of the implementation method we created for the shop you selected.
GERMAN Navigate to (or click the link and login): Einstellungen --> Warenkorbeinstellungen --> Texte
ENGLISH Navigate to (or click the image or link and login): Settings --> Basket Settings --> Texts
Or just click this image:
Scroll down to: Texts in both order processes
Look for the entry: Text for confirmation page / Affiliate tracking code
In German, scroll down to: Texte in beiden Bestellprozessen
Look for the entry: Text für Bestätigungsseite / Affiliate-Tracking-Code
Click the < > html button. (Click in the text input field and click the < > html button).
It's advisable to add the script below for both language entries, seeing as a user can specify the language. Add the following codes to both entry fields.
NOTE: Make sure to click the < > html button first!
<script type="text/javascript"> var ttConversionOptions = ttConversionOptions || []; ttConversionOptions.push({ type: 'sales', campaignID: '[marker]CAMPAIGN_ID[/marker]', productID: '[marker]PRODUCT_ID[/marker]', transactionID: '#OrderNumber', transactionAmount: '#OrderTotalAmountGross', // Format: 123.45 quantity: '1', descrMerchant: '#CustomerNumber', // Detailed description of the order descrAffiliate: '', // Description of the order. currency: '#CurrencyCode' // Use the ISO 4217 standard, e.g. USD, EUR, GBP, SEK, DKK, NOK, HUF, PLN. }); </script> <noscript> <img src="//ts.tradetracker.net/?cid=[marker]CAMPAIGN_ID[/marker]&pid=[marker]PRODUCT_ID[/marker]&tid=#OrderNumber&tam=#OrderTotalAmountGross&data=&qty=1&descrMerchant=#CustomerNumber&descrAffiliate=&event=sales¤cy=#CurrencyCode" alt="" /> </noscript> <script type="text/javascript"> (function(ttConversionOptions) { var campaignID = 'campaignID' in ttConversionOptions ? ttConversionOptions.campaignID : ('length' in ttConversionOptions && ttConversionOptions.length ? ttConversionOptions[0].campaignID : null); var tt = document.createElement('script'); tt.type = 'text/javascript'; tt.async = true; tt.src = '//tm.tradetracker.net/conversion?s=' + encodeURIComponent(campaignID) + '&t=m'; var s = document.getElementsByTagName('script'); s = s[s.length - 1]; s.parentNode.insertBefore(tt, s); })(ttConversionOptions); </script>
Click the SAVE button to save these settings.
Please keep in mind that although we do our very best to cover a wide variety of different implementations and web shop systems, programming languages and conversion registration methods for different situations, we want to state here that they are all merely examples and are not guaranteed to work for your specific situation or specific conversion or tracking needs. The reason for this is that the implementation descriptions provided are based on default system configurations and do not take system configuration settings, customisations and usage of plug-ins into account. Besides that there are also a lot of other variables that can have impact on the correct working of our tracking and conversion registration which we just can't know upfront. In case you do encounter or experience issues when implementing our tracking, please report this to your account manager and describe (in detail) the steps you took and if it's possible, provide the code and/or files you are using for your implementation to the account manager.
Shortlink to this article: https://sc.tradetracker.net/implementation/overview?f[id]=21
|
14-Mar-2019 15:53:44 |
Multi country solution with tracking group ID
|
STRATO WEBSHOP TRADETRACKER CONVERSION IMPLEMENTATION
GERMAN Navigate to Einstellungen --> Warenkorbeinstellungen --> Texte
ENGLISH Navigate to Settings --> Basket Settings --> Texts
Scroll down to: Texts in both order processes
Look for the entry: Text for confirmation page / Affiliate tracking code
or for German, scroll down to: Texte in beiden Bestellprozessen
Look for the entry: Text für Bestätigungsseite / Affiliate-Tracking-Code
Click the < > html button. (Click in the text input field and click the < > html button).
It's advisable to add the script below for both language entries, seeing as a user can specify the language. Add the following codes to both entry fields.
NOTE: Make sure to click the < > html button first!
<script type="text/javascript"> var ttConversionOptions = ttConversionOptions || []; ttConversionOptions.push({ type: 'sales', campaignID: '[marker]CAMPAIGN_ID[/marker]', trackingGroupID: '[marker][/marker]', productID: '[marker]PRODUCT_ID[/marker]', transactionID: '#OrderNumber', transactionAmount: '#OrderTotalAmountGross', quantity: '1', descrMerchant: '#CustomerNumber', descrAffiliate: '', currency: '#CurrencyCode' }); </script> <noscript> <img src="//ts.tradetracker.net/?tgi=[marker][/marker]&pid=[marker]PRODUCT_ID[/marker]&tid=#OrderNumber&tam=#OrderTotalAmountGross&data=&qty=1&descrMerchant=#CustomerNumber&descrAffiliate=&event=sales¤cy=#CurrencyCode" alt="" /> </noscript> <script type="text/javascript"> (function(ttConversionOptions) { var campaignID = 'campaignID' in ttConversionOptions ? ttConversionOptions.campaignID : ('length' in ttConversionOptions && ttConversionOptions.length ? ttConversionOptions[0].campaignID : null); var tt = document.createElement('script'); tt.type = 'text/javascript'; tt.async = true; tt.src = '//tm.tradetracker.net/conversion?s=' + encodeURIComponent(campaignID) + '&t=m'; var s = document.getElementsByTagName('script'); s = s[s.length - 1]; s.parentNode.insertBefore(tt, s); })(ttConversionOptions); </script> This will result in something like:
Click the SAVE button to save these settings.
Please keep in mind that although we do our very best to cover a wide variety of different implementations and web shop systems, programming languages and conversion registration methods for different situations, we want to state here that they are all merely examples and are not guaranteed to work for your specific situation or specific conversion or tracking needs. The reason for this is that the implementation descriptions provided are based on default system configurations and do not take system configuration settings, customisations and usage of plug-ins into account. Besides that there are also a lot of other variables that can have impact on the correct working of our tracking and conversion registration which we just can't know upfront. In case you do encounter or experience issues when implementing our tracking, please report this to your account manager and describe (in detail) the steps you took and if it's possible, provide the code and/or files you are using for your implementation to the account manager.
Shortlink to this article: https://sc.tradetracker.net/implementation/overview?f[id]=22
|
14-Mar-2019 15:51:40 |