<?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: Optimize and style Contact Form 7 for WordPress</title>
	<atom:link href="http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/</link>
	<description>Coding, Wordpress and Plugin Development</description>
	<lastBuildDate>Wed, 25 Apr 2012 06:59:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Lyle</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-20646</link>
		<dc:creator>Lyle</dc:creator>
		<pubDate>Sat, 10 Mar 2012 21:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-20646</guid>
		<description>The current version of the plugin has a filter you can use to change the image.

e.g.
[php]
add_filter(&#039;wpcf7_ajax_loader&#039;, &#039;change_wpcf7_ajax_loader&#039;);

// Change the URL to the ajax-loader image
function change_wpcf7_ajax_loader($url) {
    return get_stylesheet_directory_uri().&quot;/images/ajax-loader.gif&quot;;
}
[/php]
</description>
		<content:encoded><![CDATA[<p>The current version of the plugin has a filter you can use to change the image.</p>
<p>e.g.</p>
<pre class="brush: php; title: ; notranslate">
add_filter('wpcf7_ajax_loader', 'change_wpcf7_ajax_loader');

// Change the URL to the ajax-loader image
function change_wpcf7_ajax_loader($url) {
    return get_stylesheet_directory_uri().&quot;/images/ajax-loader.gif&quot;;
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-18944</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Tue, 14 Feb 2012 00:23:06 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-18944</guid>
		<description>Great solution. I actually ended up just removing the call to the ajax loader in the php file (I know I will have to do it again if I upgrade the plugin, but this is faster than a function). As I didn&#039;t need an animated gif slowing down the load times, considering it is only visible for a fraction of a second at best.

</description>
		<content:encoded><![CDATA[<p>Great solution. I actually ended up just removing the call to the ajax loader in the php file (I know I will have to do it again if I upgrade the plugin, but this is faster than a function). As I didn&#8217;t need an animated gif slowing down the load times, considering it is only visible for a fraction of a second at best.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mervin</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-14991</link>
		<dc:creator>Mervin</dc:creator>
		<pubDate>Wed, 21 Dec 2011 10:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-14991</guid>
		<description>What about the sidebar and the widget area contact forms?

This is not working on the sidebar or the widget area.
Could you help me

Thanks</description>
		<content:encoded><![CDATA[<p>What about the sidebar and the widget area contact forms?</p>
<p>This is not working on the sidebar or the widget area.<br />
Could you help me</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HCG Diet</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-12548</link>
		<dc:creator>HCG Diet</dc:creator>
		<pubDate>Sun, 06 Nov 2011 04:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-12548</guid>
		<description>Thanks for the update! 

I know how it is, I run a few blogs and its hard to keep up with some of the older post.</description>
		<content:encoded><![CDATA[<p>Thanks for the update! </p>
<p>I know how it is, I run a few blogs and its hard to keep up with some of the older post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Steen</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-12542</link>
		<dc:creator>Johan Steen</dc:creator>
		<pubDate>Sat, 05 Nov 2011 22:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-12542</guid>
		<description>Yes, CF7 has had a few major updates since the writing of this post, so I guess most of the code needs to be tweaked to work with the latest version of CF7.
I&#039;m not using CF7 myself anymore, so it&#039;s unlikely that I&#039;ll update the code snippets.

Cheers,
Johan</description>
		<content:encoded><![CDATA[<p>Yes, CF7 has had a few major updates since the writing of this post, so I guess most of the code needs to be tweaked to work with the latest version of CF7.<br />
I&#8217;m not using CF7 myself anymore, so it&#8217;s unlikely that I&#8217;ll update the code snippets.</p>
<p>Cheers,<br />
Johan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HCG Diet</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-12540</link>
		<dc:creator>HCG Diet</dc:creator>
		<pubDate>Sat, 05 Nov 2011 21:53:07 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-12540</guid>
		<description>Trying this code on my site (http://hcgdietteam.com) but it no longer seem to work, I know I have used it for other Wordpress sites I have made it it works great! Maybe some key code has changed?</description>
		<content:encoded><![CDATA[<p>Trying this code on my site (<a href="http://hcgdietteam.com" rel="nofollow">http://hcgdietteam.com</a>) but it no longer seem to work, I know I have used it for other WordPress sites I have made it it works great! Maybe some key code has changed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flint &#38; Tinder</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-11186</link>
		<dc:creator>Flint &#38; Tinder</dc:creator>
		<pubDate>Tue, 20 Sep 2011 21:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-11186</guid>
		<description>I&#039;ve looked everywhere and cannot find an answer to the following question, can anyone help? I&#039;d like to remove the ajax loader altogether as it is ruining the positioning of my submit button, is it possible for me to do this? If so, how?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve looked everywhere and cannot find an answer to the following question, can anyone help? I&#8217;d like to remove the ajax loader altogether as it is ruining the positioning of my submit button, is it possible for me to do this? If so, how?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Crane</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-10721</link>
		<dc:creator>Stephen Crane</dc:creator>
		<pubDate>Thu, 25 Aug 2011 18:03:45 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-10721</guid>
		<description>Great bit of coding! This has been really helpful. I was wondering tho, do i put the code in my themes functions.php file or in the contactform7&#039;s function.php file? It didn&#039;t work in either...</description>
		<content:encoded><![CDATA[<p>Great bit of coding! This has been really helpful. I was wondering tho, do i put the code in my themes functions.php file or in the contactform7&#8242;s function.php file? It didn&#8217;t work in either&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mosak</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-10504</link>
		<dc:creator>mosak</dc:creator>
		<pubDate>Tue, 16 Aug 2011 03:24:21 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-10504</guid>
		<description>hi how can I add my badwords filter in contact 7 form?? help me please thanks..</description>
		<content:encoded><![CDATA[<p>hi how can I add my badwords filter in contact 7 form?? help me please thanks..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://wpstorm.net/2009/06/optimize-style-contact-form-7-wordpress/#comment-9284</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 13 Jun 2011 10:33:01 +0000</pubDate>
		<guid isPermaLink="false">http://wpstorm.net/?p=244#comment-9284</guid>
		<description>Hi,

I wonder if you have found a way to make required fields conditional? I have a request form where the user must first select a product from a drop-down list, and then they must select the version of the product. I would like to have different drop-down lists of versions, which are required for their respective product selections. Any ideas?

Paul.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I wonder if you have found a way to make required fields conditional? I have a request form where the user must first select a product from a drop-down list, and then they must select the version of the product. I would like to have different drop-down lists of versions, which are required for their respective product selections. Any ideas?</p>
<p>Paul.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

