I found a tutorial for adding Google Conversion code in WordPress Contact Form 7, which can be found here .
I have currently added
<script type="text/javascript"> $(".wpcf7-form").submit(function(){ var google_conversion_id = "12345678910"; var google_conversion_label = "xxxxxxxxxxx"; var image = new Image(1,1); image.src = "http://www.googleadservices.com/pagead/conversion/"+google_conversion_id+"/?label="+google_conversion_label+"&script=0"; }); </script>
to my footer, but it does not send the correct results. Could someone help me with what I need to add to my plugin contact form via the WordPress dashboard so that my Google Analytics results will show the correct results. I would not want to redirect to another page.
source share