<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: How do you modify fields on the Contact form?</title>
		<link>http://www.kriesi.at/support/topic/how-do-you-modify-fields-on-the-contact-form</link>
		<description>Support Forum - Topic: How do you modify fields on the Contact form?</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 03:58:51 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/how-do-you-modify-fields-on-the-contact-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "How do you modify fields on the Contact form?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-modify-fields-on-the-contact-form#post-26251</link>
			<pubDate>Thu, 01 Sep 2011 21:38:07 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">26251@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Since you've made yet another topic &#60;a href=&#34;http://www.kriesi.at/support/topic/how-to-have-contact-form-above-content-on-contact-page&#34;&#62;here&#60;/a&#62; I'll answer that one.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mlah384 on "How do you modify fields on the Contact form?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-modify-fields-on-the-contact-form#post-26161</link>
			<pubDate>Wed, 31 Aug 2011 21:14:50 +0000</pubDate>
			<dc:creator>mlah384</dc:creator>
			<guid isPermaLink="false">26161@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;How would I put instruction text above the &#34;message&#34; field or in the message field... if it was in the message field is there a way to have the text disappear when someone clicks that field to type?&#60;/p&#62;
&#60;p&#62;Also, how can i rearrange how the form displays on the contact page? I want to have it before the page content, not after...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How do you modify fields on the Contact form?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-modify-fields-on-the-contact-form#post-24488</link>
			<pubDate>Wed, 10 Aug 2011 06:07:39 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">24488@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
open up inludes/contact-form.php. You can adjust the elements array (i.e. delete elements, change labels, rename elements, add elements, etc.) and customize the contact form. Supported elements are text, textarea and decoy fields.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$elements = array(

		&#38;#39;yourname&#38;#39; 	=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;text&#38;#39;, 	&#38;#39;label&#38;#39;=&#38;gt;__(&#38;#39;Name&#38;#39;,&#38;#39;avia_framework&#38;#39;), 		&#38;#39;check&#38;#39;=&#38;gt;&#38;#39;is_empty&#38;#39;),			//user name
		&#38;#39;email&#38;#39; 	=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;text&#38;#39;, 	&#38;#39;label&#38;#39;=&#38;gt;__(&#38;#39;E-Mail&#38;#39;,&#38;#39;avia_framework&#38;#39;), 	&#38;#39;check&#38;#39;=&#38;gt;&#38;#39;is_email&#38;#39;),			//user email
		&#38;#39;website&#38;#39; 	=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;text&#38;#39;, 	&#38;#39;label&#38;#39;=&#38;gt;__(&#38;#39;Website&#38;#39;,&#38;#39;avia_framework&#38;#39;), 	&#38;#39;check&#38;#39;=&#38;gt;&#38;#39;&#38;#39;),					//user website
		&#38;#39;subject&#38;#39; 	=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;text&#38;#39;, 	&#38;#39;label&#38;#39;=&#38;gt;__(&#38;#39;Subject&#38;#39;,&#38;#39;avia_framework&#38;#39;), 	&#38;#39;check&#38;#39;=&#38;gt;&#38;#39;is_empty&#38;#39;),			//subject
		&#38;#39;message&#38;#39; 	=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;textarea&#38;#39;,&#38;#39;label&#38;#39;=&#38;gt;__(&#38;#39;Message&#38;#39;,&#38;#39;avia_framework&#38;#39;), 	&#38;#39;check&#38;#39;=&#38;gt;&#38;#39;is_empty&#38;#39;),			//message
		&#38;#39;myemail&#38;#39; 	=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;hidden&#38;#39;,	&#38;#39;label&#38;#39;=&#38;gt;&#38;#39;&#38;#39;, &#38;#39;check&#38;#39;=&#38;gt;&#38;#39;&#38;#39;, &#38;#39;value&#38;#39;=&#38;gt; avia_get_option(&#38;#39;avia, email&#38;#39;) ),		//email adress the form should be sent to
		&#38;#39;myblogname&#38;#39;=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;hidden&#38;#39;,	&#38;#39;label&#38;#39;=&#38;gt;&#38;#39;&#38;#39;, &#38;#39;check&#38;#39;=&#38;gt;&#38;#39;&#38;#39;, &#38;#39;value&#38;#39;=&#38;gt; get_option(&#38;#39;blogname&#38;#39;) ),				//name of the website, gets added to the subject line
		&#38;#39;username&#38;#39;	=&#38;gt; 	array(&#38;#39;type&#38;#39;=&#38;gt;&#38;#39;decoy&#38;#39;,	&#38;#39;label&#38;#39;=&#38;gt;&#38;#39;&#38;#39;, &#38;#39;check&#38;#39;=&#38;gt;&#38;#39;must_empty&#38;#39;),										//decoy input field for bots, input field gets hidden, if bot enters value form wont be submitted

	);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>mlah384 on "How do you modify fields on the Contact form?"</title>
			<link>http://www.kriesi.at/support/topic/how-do-you-modify-fields-on-the-contact-form#post-24485</link>
			<pubDate>Wed, 10 Aug 2011 05:45:16 +0000</pubDate>
			<dc:creator>mlah384</dc:creator>
			<guid isPermaLink="false">24485@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;How can I change or delete fields on the contact form?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
