You want to display ads in the “success” page?
I don’t know what the Adwords conversion script looks like, but maybe you can use on_sent_ok hook for it. on_sent_ok hook is described here:
http://ideasilo.wordpress.com/2009/05/31/contact-form-7-1-10/
Here is what I have placed in the addtional setting area:
on_sent_ok:<script type="text/javascript">
<!--
var google_conversion_id = 1030254689;
var google_conversion_language = "en_US";
var google_conversion_format = "3";
var google_conversion_color = "ffffff";
var google_conversion_label = "kUxiCMPSlAEQl-Cgth56";
//-->
</script>
<script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1030254689/?label=kUxiCMPSlAEQl-Cgth56&guid=ON&script=0"/>
</div>
</noscript>
I have testing sending messages and they work. However, I don’t get the on-screen confirmation that the message was sent.
Any suggestions?
Thanks…..
What I did was added a Redirect in WordPress to a Thank you page after a successful message:
on_sent_ok: “location.replace(‘/thankyou’);”
Then I placed the tracking code on the Thank You page, where you can also add your personal message, etc.
Best of luck.