<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Tracking Form Submissions with Google Analytics</title>
	<atom:link href="http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/</link>
	<description>Just another contact form plugin for WordPress. Simple but flexible.</description>
	<lastBuildDate>Wed, 27 Jan 2010 02:43:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andreas Ostheimer</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-206</link>
		<dc:creator>Andreas Ostheimer</dc:creator>
		<pubDate>Sat, 09 Jan 2010 14:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-206</guid>
		<description>In some cases it might be even better to use the trackEvent function of Google Analytics so that every sent form can be tracked as an Event.
E.g.:
on_sent_ok: &quot;pageTracker._trackEvent(&#039;Formular&#039;,&#039;Absenden&#039;,&#039;Dr. Klein&#039;);&quot;

See more on this topic here: http://code.google.com/intl/de-DE/apis/analytics/docs/tracking/eventTrackerGuide.html

Andreas</description>
		<content:encoded><![CDATA[<p>In some cases it might be even better to use the trackEvent function of Google Analytics so that every sent form can be tracked as an Event.<br />
E.g.:<br />
on_sent_ok: &#8220;pageTracker._trackEvent(&#8216;Formular&#8217;,'Absenden&#8217;,'Dr. Klein&#8217;);&#8221;</p>
<p>See more on this topic here: <a href="http://code.google.com/intl/de-DE/apis/analytics/docs/tracking/eventTrackerGuide.html" rel="nofollow">http://code.google.com/intl/de-DE/apis/analytics/docs/tracking/eventTrackerGuide.html</a></p>
<p>Andreas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thanks!! I appreciate this plugin and your work</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-167</link>
		<dc:creator>Thanks!! I appreciate this plugin and your work</dc:creator>
		<pubDate>Wed, 30 Dec 2009 19:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-167</guid>
		<description>Man, you have just read my thoughts. Thank you a lot for your help and contribution to us :)</description>
		<content:encoded><![CDATA[<p>Man, you have just read my thoughts. Thank you a lot for your help and contribution to us <img src='http://contactform7.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jing Liu</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-119</link>
		<dc:creator>Jing Liu</dc:creator>
		<pubDate>Mon, 14 Dec 2009 21:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-119</guid>
		<description>I had the same problem. Looked at the code, realized that I used Ultimate GA (Google Analytics) so that when I am logged in the tracking code does not show on the page hence the script did not work.

If you are using Ultimate GA, try logging out and try the form again.</description>
		<content:encoded><![CDATA[<p>I had the same problem. Looked at the code, realized that I used Ultimate GA (Google Analytics) so that when I am logged in the tracking code does not show on the page hence the script did not work.</p>
<p>If you are using Ultimate GA, try logging out and try the form again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Takayuki Miyoshi</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-88</link>
		<dc:creator>Takayuki Miyoshi</dc:creator>
		<pubDate>Tue, 08 Dec 2009 02:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-88</guid>
		<description>Simply line up them like this:

&lt;pre&gt;&lt;code&gt;on_sent_ok: &quot;pageTracker._trackPageview(&#039;/mysite/thank-you.html&#039;);&quot;
on_sent_ok: &quot;location.replace(&#039;domain.com/confirmation/&#039;);&quot;&lt;/code&gt;&lt;/pre&gt;

I think it would be safe to do the tracking first, and the redirection last.</description>
		<content:encoded><![CDATA[<p>Simply line up them like this:</p>
<pre><code>on_sent_ok: "pageTracker._trackPageview('/mysite/thank-you.html');"
on_sent_ok: "location.replace('domain.com/confirmation/');"</code></pre>
<p>I think it would be safe to do the tracking first, and the redirection last.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: senlin</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-86</link>
		<dc:creator>senlin</dc:creator>
		<pubDate>Mon, 07 Dec 2009 14:59:07 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-86</guid>
		<description>Great to learn how to track form submissions.

Where can I find how to combine this snippet of code with the
on_sent_ok: &quot;location.replace(&#039;domain.com/confirmation/&#039;);&quot; snippet I am using already?</description>
		<content:encoded><![CDATA[<p>Great to learn how to track form submissions.</p>
<p>Where can I find how to combine this snippet of code with the<br />
on_sent_ok: &#8220;location.replace(&#8216;domain.com/confirmation/&#8217;);&#8221; snippet I am using already?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Takayuki Miyoshi</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-82</link>
		<dc:creator>Takayuki Miyoshi</dc:creator>
		<pubDate>Sat, 05 Dec 2009 23:59:28 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-82</guid>
		<description>Yes. It means some JavaScript errors were happening. Submit it to the &lt;a href=&quot;http://wordpress.org/tags/contact-form-7?forum_id=10&quot; rel=&quot;nofollow&quot;&gt;support forum&lt;/a&gt; if you need further help.</description>
		<content:encoded><![CDATA[<p>Yes. It means some JavaScript errors were happening. Submit it to the <a href="http://wordpress.org/tags/contact-form-7?forum_id=10" rel="nofollow">support forum</a> if you need further help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jessica Davis</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-81</link>
		<dc:creator>Jessica Davis</dc:creator>
		<pubDate>Sat, 05 Dec 2009 23:25:39 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-81</guid>
		<description>This is great, the only issue I noticed is that the AJAX confirmation message no longer shows up. Did I do something wrong?</description>
		<content:encoded><![CDATA[<p>This is great, the only issue I noticed is that the AJAX confirmation message no longer shows up. Did I do something wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arthur Wetselaar</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-70</link>
		<dc:creator>Arthur Wetselaar</dc:creator>
		<pubDate>Thu, 03 Dec 2009 09:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-70</guid>
		<description>Hi, thanks for your great form generator and the usefull info on this page. Would it maybe be better if this could be a general setting for all comments. And that you only have to enable the function and to fill in only the name of the tracker? Icing on the cake would be that I could enable or disable the general tracking per form and use a custom tracker if I wish?</description>
		<content:encoded><![CDATA[<p>Hi, thanks for your great form generator and the usefull info on this page. Would it maybe be better if this could be a general setting for all comments. And that you only have to enable the function and to fill in only the name of the tracker? Icing on the cake would be that I could enable or disable the general tracking per form and use a custom tracker if I wish?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eve @ Letters to Breathe</title>
		<link>http://contactform7.com/2009/11/24/tracking-form-submissions-with-google-analytics/comment-page-1/#comment-26</link>
		<dc:creator>Eve @ Letters to Breathe</dc:creator>
		<pubDate>Wed, 25 Nov 2009 16:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://contactform7.com/?p=503#comment-26</guid>
		<description>I could kiss you! I have been trying to find a way to do this for two days, LOL I feel silly for not looking here first! Thanks so much- it works perfectly!</description>
		<content:encoded><![CDATA[<p>I could kiss you! I have been trying to find a way to do this for two days, LOL I feel silly for not looking here first! Thanks so much- it works perfectly!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
