I would like to add the Google Conversion tracking code to my thanks.html page. From previous posts, it was recommended the code get added to the footer.html, however, I am only interested in tracking conversions from the thank you page. Normally when I add Google analytics code, or other Google tracking codes, I added the javascript before the body tag at end of the HTML page. Do I add the code in the thanks.html page before this line? {include file="footer.html"} Thanks, Simon
Yep, but it may depend on your footer file. For example, you may want to actually break footer.html into 2 files: footer.html, and bottom.html with bottom containing the </body></html> This way you can do this {include file="footer.html"} Tracking code {include file="bottom.html"} David