We work with an organization that assists us with digital advertising, e.g., banner ads that you click through to a donation form. In order to track click-throughs, page visits, and conversions we need to insert tags on our donation forms as well as the "success/confirmation" page once a donation is made. My question is where would I insert these tags within either the form builder or CSS and where/how would I insert this on the confirmation page once a donation is made?
When using our previous donor forms through a different vendor, we were able to pull up the HTML on the form template and insert the code into the footer, and were able to do essentially the same thing on the success/confirmation page. Here with C&P I'm not quite sure how to do that.
Here is some general information provided by our marketing partner. I have more detailed information in an integration guide I can provide if needed:
------------------------
There’s a lot of information in the tech guide, but the main points of implementing our tags on your sites are listed out below.
Tags can be placed anywhere on the page. Recommended in header or footer so tags appear on all pages.
<script>
var _wds_ae = "{Insert EMAIL_ADDRESS Here}";
var _wds_oi = "{Insert ORDER_ID Here}";
var _wds_oa = "{Insert ORDER_AMOUNT Here}";
</script>
Firing the tag with empty (“”) values is fine on pages where the values are not present. Please populate and deploy the delivered standard tags as quickly as possible to begin building your online audiences and baseline metrics.
Your variable values replace the yellow verbiage including the curly braces {}. The quotes stay and need to be straight quote marks " (rather than “ or ”).
It is also possible to pass other variables. See the technical integration guide for details. These additional variables are not required.
-----------------
To summarize, where and how do I place the master and data tag on the donation form itself (e.g., form builder) and same question for the thankyou/confirmation page.
Thanks!
When using our previous donor forms through a different vendor, we were able to pull up the HTML on the form template and insert the code into the footer, and were able to do essentially the same thing on the success/confirmation page. Here with C&P I'm not quite sure how to do that.
Here is some general information provided by our marketing partner. I have more detailed information in an integration guide I can provide if needed:
------------------------
There’s a lot of information in the tech guide, but the main points of implementing our tags on your sites are listed out below.
Tags can be placed anywhere on the page. Recommended in header or footer so tags appear on all pages.
- Master Tag should be placed on all pages of all websites.
- <script type="text/javascript" src="//tags.wdsvc.net/controller.js?id=100259" defer></script>
<noscript><img src="//tags.wdsvc.net/noscript?id=100259&wdsim={CUSTOMER_ID}&wdsoi={ORDE R_ID}&wdsoa={ORDER_AMOUNT}"
- <script type="text/javascript" src="//tags.wdsvc.net/controller.js?id=100259" defer></script>
- Data Tag can be on all pages, but only needed on data pages such as “Thank You” page(s) following conversion page(s).
- <!Additional variables may be added as explained in your WDS Technical Integration Guide>
<script>
var _wds_oi = "{Insert ORDER_ID Here}";
var _wds_oa = "{Insert ORDER_AMOUNT Here}";
</script>
- <!Additional variables may be added as explained in your WDS Technical Integration Guide>
- Data Tag implemented before Master Tag.
<script>
var _wds_ae = "{Insert EMAIL_ADDRESS Here}";
var _wds_oi = "{Insert ORDER_ID Here}";
var _wds_oa = "{Insert ORDER_AMOUNT Here}";
</script>
Firing the tag with empty (“”) values is fine on pages where the values are not present. Please populate and deploy the delivered standard tags as quickly as possible to begin building your online audiences and baseline metrics.
Your variable values replace the yellow verbiage including the curly braces {}. The quotes stay and need to be straight quote marks " (rather than “ or ”).
It is also possible to pass other variables. See the technical integration guide for details. These additional variables are not required.
-----------------
To summarize, where and how do I place the master and data tag on the donation form itself (e.g., form builder) and same question for the thankyou/confirmation page.
Thanks!
Comment