<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<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">
	<channel>
		<title>Gravity Support Forums Forum: Feature Requests - Recent Posts</title>
		<link>http://forum.gravityhelp.com/forum/feature-requests</link>
		<description>Gravity Support Forums Forum: Feature Requests - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Mon, 06 Sep 2010 00:35:22 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://forum.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="http://forum.gravityhelp.com/rss/forum/feature-requests" rel="self" type="application/rss+xml" />

		<item>
			<title>rtsaboya on "Feature requests :)"</title>
			<link>http://forum.gravityhelp.com/topic/feature-request#post-9394</link>
			<pubDate>Sat, 04 Sep 2010 20:17:11 +0000</pubDate>
			<dc:creator>rtsaboya</dc:creator>
			<guid isPermaLink="false">9394@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;I entered this forum to post two suggestions, and these were exactly stated by #1 and #2 of idealists' first post. They would be really handy.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deckerweb on "German Translation"</title>
			<link>http://forum.gravityhelp.com/topic/german-translation#post-9386</link>
			<pubDate>Sat, 04 Sep 2010 13:41:08 +0000</pubDate>
			<dc:creator>deckerweb</dc:creator>
			<guid isPermaLink="false">9386@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there!&#60;br /&#62;
You can download my German translation here: &#60;a href=&#34;http://bit.ly/gravityforms-de&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/gravityforms-de&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-Dave from Germany :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lindebjerg on "International Adress field"</title>
			<link>http://forum.gravityhelp.com/topic/international-adress-field#post-9384</link>
			<pubDate>Sat, 04 Sep 2010 11:08:08 +0000</pubDate>
			<dc:creator>lindebjerg</dc:creator>
			<guid isPermaLink="false">9384@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Dave,&#60;/p&#62;
&#60;p&#62;now I just saw your translation and learned to name the files right. That was the problem gravityforms-de_DE.mo.&#60;/p&#62;
&#60;p&#62;thanks:-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deckerweb on "International Adress field"</title>
			<link>http://forum.gravityhelp.com/topic/international-adress-field#post-9381</link>
			<pubDate>Sat, 04 Sep 2010 10:18:44 +0000</pubDate>
			<dc:creator>deckerweb</dc:creator>
			<guid isPermaLink="false">9381@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;@lindebjerg&#60;br /&#62;
you have to name the file gravityforms-de_DE.mo / .po then it will work fine :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Styling the Submit button"</title>
			<link>http://forum.gravityhelp.com/topic/styling-the-submit-button#post-9373</link>
			<pubDate>Sat, 04 Sep 2010 00:15:29 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9373@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;Not sure if there's a filter to change the input itself.. I'll have to double check on that. You can usually effect changes with inheritance from the parent &#38;lt;li &#38;gt; element.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;li.mycustomclassname input {margin:0}
li.mycustomclassname select {margin:10px}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You could use the same method to target the field with jQuery if you really wanted to append a class name to the input itself... something like this..&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery(document).ready(function() {
 		jQuery(&#38;quot;li.mycustomclassname input&#38;quot;).addClass(&#38;quot;myinputclass&#38;quot;);
	});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or directly using the input id like this..&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery(document).ready(function() {
 		jQuery(&#38;quot;#input_1_4&#38;quot;).addClass(&#38;quot;myinputclass&#38;quot;);
	});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>orangeapple on "Styling the Submit button"</title>
			<link>http://forum.gravityhelp.com/topic/styling-the-submit-button#post-9367</link>
			<pubDate>Fri, 03 Sep 2010 23:17:51 +0000</pubDate>
			<dc:creator>orangeapple</dc:creator>
			<guid isPermaLink="false">9367@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin, thanks! I had found that and just wanted to put my vote in for custom classes on individual inputs.&#60;/p&#62;
&#60;p&#62;Your solution worked like a charm.&#60;/p&#62;
&#60;p&#62;Follow-up question:&#60;br /&#62;
What is the correct function calls to replace the class on a specific input? When creating the form you can enter a custom class, but that is added to the parent &#60;u&#62;li&#60;/u&#62; rather than the form field itself. &#60;/p&#62;
&#60;p&#62;example: I want to change this specific input in form ID 1&#60;br /&#62;
&#60;code&#62;&#38;lt;input name=&#38;quot;input_4&#38;quot; id=&#38;quot;input_1_4&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;quot; class=&#38;quot;large&#38;quot; tabindex=&#38;quot;1&#38;quot;&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Zack Katz on "Constant Contact Add-on"</title>
			<link>http://forum.gravityhelp.com/topic/constant-contact-add-on#post-9356</link>
			<pubDate>Fri, 03 Sep 2010 19:49:29 +0000</pubDate>
			<dc:creator>Zack Katz</dc:creator>
			<guid isPermaLink="false">9356@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have released the &#60;a href=&#34;http://wordpress.org/extend/plugins/gravity-forms-constant-contact/&#34; rel=&#34;nofollow&#34;&#62;Gravity Forms + Constant Contact plugin&#60;/a&#62;, which adds entry information into Constant Contact...however, it doesn't use the official integration system.&#60;/p&#62;
&#60;p&#62;Check it out and please let me know how it can work better for you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "International Adress field"</title>
			<link>http://forum.gravityhelp.com/topic/international-adress-field#post-9339</link>
			<pubDate>Fri, 03 Sep 2010 14:55:55 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">9339@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would have to use PHP and the filter I referenced above to change the labels on your Danish forms using custom code you would add to your functions.php file.  You would use that code and only change the filters if the form id is one of your danish forms.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lindebjerg on "International Adress field"</title>
			<link>http://forum.gravityhelp.com/topic/international-adress-field#post-9333</link>
			<pubDate>Fri, 03 Sep 2010 14:44:22 +0000</pubDate>
			<dc:creator>lindebjerg</dc:creator>
			<guid isPermaLink="false">9333@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks it works fine here:http://hardthaus.de/kontakt/gutschein/&#60;br /&#62;
Another site (coming soon) I have both Danish and English contact forms, how can I handle that?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Styling the Submit button"</title>
			<link>http://forum.gravityhelp.com/topic/styling-the-submit-button#post-9330</link>
			<pubDate>Fri, 03 Sep 2010 13:46:42 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9330@http://forum.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can do this now using the &#34;gform_submit_button&#34; filter. Here's another topic with an example.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://forum.gravityhelp.com/topic/styling-the-submit-button-1#post-7367&#34; rel=&#34;nofollow&#34;&#62;http://forum.gravityhelp.com/topic/styling-the-submit-button-1#post-7367&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We may add the capability to the admin in a later version, but you can use that filter to manipulate the submit button anyway you want. Just be sure to keep the &#34;id&#34; value on the button so it still works properly with conditional logic, etc.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
