|
|
Question:
What is the best way to implement Google AdWords conversion code in my Nexternal system?
|
Response:
Conversion tracking code should be inserted into the Order Management System in Settings/Edit Policies, Addenda, and Disclaimers/Order/Affiliate Addendum. We recommend using the dynamic version of the code which can take advantage of the ORDER_NET replacement keyword. Your code might look something like this:
<!-- Google Code for Purchase/Sale Conversion Page -->
<script language="JavaScript" type="text/javascript">
<!--
var google_conversion_id = YOURGOOGLEADWORDSACCOUNTIDHERE;
var google_conversion_language = "en_US";
var google_conversion_format = "1";
var google_conversion_color = "FFFFFF";
if (ORDER_NET) {
var google_conversion_value = ORDER_NET;
}
var google_conversion_label = "purchase";
//-->
</script>
<script language="JavaScript" src="https://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
src="https://www.googleadservices.com/pagead/conversion/YOURGOOGLEADWORDSACCOUNTIDHERE/imp.gif?value=ORDER_NET&label=purchase&script=0">
</noscript>
Where YOURGOOGLEADWORDSACCOUNTIDHERE is your unique Google AdWords ID.
|
|