		<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Appnitro Software Forums Topic: Change in date display in send form?</title>
<link>http://www.appnitro.com/forums/</link>
<description>Appnitro Software Forums Topic: Change in date display in send form?</description>
<language>en</language>
<pubDate>Tue, 07 Feb 2012 09:55:19 +0000</pubDate>

<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form/page/2#post-2231</link>
<pubDate>Wed, 02 Jul 2008 15:50:56 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2231@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;well done!&#60;br /&#62;
it seem you have solved it.
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2226</link>
<pubDate>Tue, 01 Jul 2008 17:11:36 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2226@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Uhmz... it seems if I remove if($data['element_type'] == 'radio' &#38;#38;&#38;#38; $target_is_admin === true){&#60;/p&#62;
&#60;p&#62;And replace it with if($data['element_type'] == 'select' &#38;#38;&#38;#38; $target_is_admin === true){&#60;/p&#62;
&#60;p&#62;It works... Any way to combine those two?&#60;br /&#62;
Also some fields are on the same form.&#60;/p&#62;
&#60;p&#62;//edit #1&#60;/p&#62;
&#60;p&#62;Woohoo! I managed to get it working! And I don't know anything about PHP!&#60;/p&#62;
&#60;p&#62;I edited to this:&#60;/p&#62;
&#60;p&#62; if($data['element_type'] == 'select' OR 'radio' &#38;#38;&#38;#38; $target_is_admin === true){&#60;/p&#62;
&#60;p&#62;Is this correct....?&#60;br /&#62;
...anyways it works!&#60;/p&#62;
&#60;p&#62;//edit #2&#60;/p&#62;
&#60;p&#62;The following code will not cause any problems, right?&#60;/p&#62;
&#60;p&#62;	if($form_id == 2 OR 3 OR 4){&#60;br /&#62;
		if($data['element_id'] == 3 OR 43 OR 45 OR 51 OR 53 OR 59){
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2225</link>
<pubDate>Tue, 01 Jul 2008 16:56:54 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2225@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;I also added this: if($data['element_type'] == 'select' &#38;#38;&#38;#38; $target_is_admin === true){&#60;/p&#62;
&#60;p&#62;but it does not work?
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2224</link>
<pubDate>Tue, 01 Jul 2008 16:51:00 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2224@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Uhmz... Another problem?&#60;/p&#62;
&#60;p&#62;I added it for a different form as well, for the TLDs (for domainnames), which is a pulldown field:&#60;/p&#62;
&#60;p&#62;	if($form_id == 2){&#60;br /&#62;
		if($data['element_id'] == 3){&#60;/p&#62;
&#60;p&#62;			if($data['value'] == &#34;.NL&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01000]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.NU&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01004]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.BE&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01005]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.DE&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01010]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.EU&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01015]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.COM&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01001]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.NET&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01002]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.ORG&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01003]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.INFO&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01008]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.BIZ&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01006]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.NAME&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01016]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.CO.UK&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01012]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.CA&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01017]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.CC&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01018]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.MOBI&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01019]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.TV&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01007]&#34;;&#60;br /&#62;
			}elseif($data['value'] == &#34;.WS&#34;){&#60;br /&#62;
				$entry_details[$i]['value'] .= &#34; [Art.01009]&#34;;&#60;br /&#62;
			}&#60;/p&#62;
&#60;p&#62;		}&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;I checked the form_id, which is correct (2) and I checked the element_id, which is also correct (3), but it does not show anything when the form is submitted.
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2223</link>
<pubDate>Tue, 01 Jul 2008 16:27:49 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2223@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Okay great, I take it works for pulldowns as well etc?
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2222</link>
<pubDate>Tue, 01 Jul 2008 16:19:16 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2222@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;To use it for another form, you need to duplicate the above code and adjust some values there. Particularly: form_id, element_id and those product codes. &#60;/p&#62;
&#60;p&#62;So if you have few forms, your code would be something like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if($data[&#38;#39;element_type&#38;#39;] == &#38;#39;radio&#38;#39; &#38;#38;&#38;#38; $target_is_admin === true){
	if($form_id == 3){
		.. first form code here ...
	}

	if($form_id == 4){
		.. second form code here ...
	}

	if($form_id == 5){
		.. third form code here ...
	}

	if($form_id == 6){
		.. fourth form code here ...
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2221</link>
<pubDate>Tue, 01 Jul 2008 16:13:29 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2221@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Hi Yuniar,&#60;/p&#62;
&#60;p&#62;Thanks for the answer. First solution worked without problems! Thanks.&#60;/p&#62;
&#60;p&#62;I take it, if I do the same with my other order forms, I can use this every time? For different products?&#60;/p&#62;
&#60;p&#62;Should I pay close attention to something, or would this work without problems?
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2220</link>
<pubDate>Tue, 01 Jul 2008 15:56:42 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2220@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Sorry for the delay!&#60;br /&#62;
I was trying to figure out the easiest way for you.&#60;/p&#62;
&#60;p&#62;Ok, here we go. Edit your &#60;strong&#62;includes/helper-functions.php&#60;/strong&#62; file.&#60;br /&#62;
Exactly at line 287, you'll find this code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$i++;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
right ABOVE that line, insert the code below:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if($data[&#38;#39;element_type&#38;#39;] == &#38;#39;radio&#38;#39; &#38;#38;&#38;#38; $target_is_admin === true){
	if($form_id == 3){
		if($data[&#38;#39;element_id&#38;#39;] == 15){

			if($data[&#38;#39;value&#38;#39;] == &#38;quot;eD.50MB webhostingpakket van 45,- Euro per jaar&#38;quot;){
				$entry_details[$i][&#38;#39;value&#38;#39;] .= &#38;quot; (Product Code: 20006)&#38;quot;;
			}elseif($data[&#38;#39;value&#38;#39;] == &#38;quot;eD.100MB webhostingpakket van 70,- Euro per jaar&#38;quot;){
				$entry_details[$i][&#38;#39;value&#38;#39;] .= &#38;quot; (Product Code: 20000)&#38;quot;;
			}elseif($data[&#38;#39;value&#38;#39;] == &#38;quot;eD.200MB webhostingpakket van 90,- Euro per jaar&#38;quot;){
				$entry_details[$i][&#38;#39;value&#38;#39;] .= &#38;quot; (Product Code: 20001)&#38;quot;;
			}elseif($data[&#38;#39;value&#38;#39;] == &#38;quot;eD.400MB webhostingpakket van 118,- Euro per jaar&#38;quot;){
				$entry_details[$i][&#38;#39;value&#38;#39;] .= &#38;quot; (Product Code: 20003)&#38;quot;;
			}elseif($data[&#38;#39;value&#38;#39;] == &#38;quot;eD.600MB webhostingpakket van 148,- Euro per jaar&#38;quot;){
				$entry_details[$i][&#38;#39;value&#38;#39;] .= &#38;quot; (Product Code: 20004)&#38;quot;;
			}elseif($data[&#38;#39;value&#38;#39;] == &#38;quot;eD.1000MB webhostingpakket van 193,- Euro per jaar&#38;quot;){
				$entry_details[$i][&#38;#39;value&#38;#39;] .= &#38;quot; (Product Code: 20005)&#38;quot;;
			}

		}
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
That should do it.&#60;/p&#62;
&#60;p&#62;If the code above doesn't clear, use this one:&#60;br /&#62;
&#60;a href=&#34;http://mf.pastebin.com/f793d494&#34; rel=&#34;nofollow&#34;&#62;http://mf.pastebin.com/f793d494&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2219</link>
<pubDate>Tue, 01 Jul 2008 15:23:27 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2219@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Any news yet, so I can continue on my forms?
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2217</link>
<pubDate>Mon, 30 Jun 2008 16:37:21 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2217@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Sorry. :)&#60;/p&#62;
&#60;p&#62;Form ID number = 3&#60;/p&#62;
&#60;p&#62;eD.50MB webhostingpakket van 45,- Euro per jaar       -&#38;gt; 20006&#60;br /&#62;
eD.100MB webhostingpakket van 70,- Euro per jaar      -&#38;gt; 20000&#60;br /&#62;
eD.200MB webhostingpakket van 90,- Euro per jaar      -&#38;gt; 20001&#60;br /&#62;
eD.400MB webhostingpakket van 118,- Euro per jaar     -&#38;gt; 20003&#60;br /&#62;
eD.600MB webhostingpakket van 148,- Euro per jaar     -&#38;gt; 20004&#60;br /&#62;
eD.1000MB webhostingpakket van 193,- Euro per jaar    -&#38;gt; 20005&#60;/p&#62;
&#60;p&#62;The numbers at the end are the productcodes.&#60;/p&#62;
&#60;p&#62;Though I totally appreciate what you are doing for me, can you not explain me what I have to exactly, cause I have 9 other forms, which need also productcodes. So if I know how to do it, I could do it myself instead of bothering you with this. ;)&#60;/p&#62;
&#60;p&#62;Thanks again so far!
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2216</link>
<pubDate>Mon, 30 Jun 2008 16:28:37 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2216@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;great, ok what's your form id number? also, let me know the product code for each radio button.
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2215</link>
<pubDate>Mon, 30 Jun 2008 16:22:01 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2215@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Thanks for the quick response.&#60;/p&#62;
&#60;p&#62;I edited the date/time code. So it should work now.&#60;/p&#62;
&#60;p&#62;As for the HTML code with the webhostingpackages:&#60;/p&#62;
&#60;p&#62;&#38;lt;input id=&#34;element_15_1&#34; name=&#34;element_15&#34; class=&#34;element radio&#34; type=&#34;radio&#34; value=&#34;1&#34; checked=&#34;checked&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;label class=&#34;choice&#34; for=&#34;element_15_1&#34;&#38;gt;eD.50MB webhostingpakket van 45,- Euro per jaar&#38;lt;/label&#38;gt;&#60;br /&#62;
&#38;lt;input id=&#34;element_15_2&#34; name=&#34;element_15&#34; class=&#34;element radio&#34; type=&#34;radio&#34; value=&#34;2&#34;  /&#38;gt;&#60;br /&#62;
&#38;lt;label class=&#34;choice&#34; for=&#34;element_15_2&#34;&#38;gt;eD.100MB webhostingpakket van 70,- Euro per jaar&#38;lt;/label&#38;gt;&#60;br /&#62;
&#38;lt;input id=&#34;element_15_3&#34; name=&#34;element_15&#34; class=&#34;element radio&#34; type=&#34;radio&#34; value=&#34;3&#34;  /&#38;gt;&#60;br /&#62;
&#38;lt;label class=&#34;choice&#34; for=&#34;element_15_3&#34;&#38;gt;eD.200MB webhostingpakket van 90,- Euro per jaar&#38;lt;/label&#38;gt;&#60;br /&#62;
&#38;lt;input id=&#34;element_15_4&#34; name=&#34;element_15&#34; class=&#34;element radio&#34; type=&#34;radio&#34; value=&#34;4&#34;  /&#38;gt;&#60;br /&#62;
&#38;lt;label class=&#34;choice&#34; for=&#34;element_15_4&#34;&#38;gt;eD.400MB webhostingpakket van 118,- Euro per jaar&#38;lt;/label&#38;gt;&#60;br /&#62;
&#38;lt;input id=&#34;element_15_5&#34; name=&#34;element_15&#34; class=&#34;element radio&#34; type=&#34;radio&#34; value=&#34;5&#34;  /&#38;gt;&#60;br /&#62;
&#38;lt;label class=&#34;choice&#34; for=&#34;element_15_5&#34;&#38;gt;eD.600MB webhostingpakket van 148,- Euro per jaar&#38;lt;/label&#38;gt;&#60;br /&#62;
&#38;lt;input id=&#34;element_15_6&#34; name=&#34;element_15&#34; class=&#34;element radio&#34; type=&#34;radio&#34; value=&#34;6&#34;  /&#38;gt;&#60;br /&#62;
&#38;lt;label class=&#34;choice&#34; for=&#34;element_15_6&#34;&#38;gt;eD.1000MB webhostingpakket van 193,- Euro per jaar&#38;lt;/label&#38;gt;&#60;/p&#62;
&#60;p&#62;I take it, this is what you mean?&#60;/p&#62;
&#60;p&#62;//edit&#60;/p&#62;
&#60;p&#62;It's not a pulldown, but a radio-button field. :)
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2211</link>
<pubDate>Mon, 30 Jun 2008 16:07:22 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2211@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Regarding the product code.. hmm.. can you paste me the HTML code for your drop down?&#60;br /&#62;
Also what is your form id number?
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2210</link>
<pubDate>Mon, 30 Jun 2008 16:03:56 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2210@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Ooops.. sorry I forgot the time!&#60;/p&#62;
&#60;p&#62;Ok, use this one instead:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$query = &#38;quot;select date_format(date_created,&#38;#39;%d-%m-%Y %H:%i:%s&#38;#39;) date_created,ip_address from ap_form_{$form_id} where id=&#38;#39;$entry_id&#38;#39;&#38;quot;;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2209</link>
<pubDate>Mon, 30 Jun 2008 15:58:28 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2209@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Okay the date shows correctly, however it does not show the time anymore. Which is also critical for our order forms. Do you have a fix for that?&#60;/p&#62;
&#60;p&#62;And regarding the product code, I don't think what you recommend will work.&#60;/p&#62;
&#60;p&#62;I will try to explain with an example; you have an order form where you can select a webhostingpackage, like this:&#60;/p&#62;
&#60;p&#62;Webhostingplan 1 (code 5220)&#60;br /&#62;
Webhostingplan 2 (code 5221)&#60;br /&#62;
Webhostingplan 3 (code 5222)&#60;/p&#62;
&#60;p&#62;On the form itself and on the review form page, it should only show Webhostingplan 2, without the code. When the order form is sent it should show Webhostingplan 2 (code 5221).
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2207</link>
<pubDate>Mon, 30 Jun 2008 14:35:43 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2207@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Okay thanks Yuniar, I will try both.&#60;/p&#62;
&#60;p&#62;And as for the hidden product code; it will show up on the order we receive by email, right?
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2201</link>
<pubDate>Sat, 28 Jun 2008 16:04:10 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2201@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;To change the date, edit &#60;strong&#62;includes/helper-functions.php&#60;/strong&#62; file, search around line 291:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$query = &#38;quot;select date_created,ip_address from ap_form_{$form_id} where id=&#38;#39;$entry_id&#38;#39;&#38;quot;;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
change it to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$query = &#38;quot;select date_format(date_created,&#38;#39;%d-%m-%Y&#38;#39;) date_created,ip_address from ap_form_{$form_id} where id=&#38;#39;$entry_id&#38;#39;&#38;quot;;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regarding product code, you can simply hide your current product code field using some CSS code.&#60;/p&#62;
&#60;p&#62;For example, if your product code field is having id = &#34;element_3&#34;, then add this CSS code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#li_3 { display: none; }&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
that would hide your field.
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2200</link>
<pubDate>Fri, 27 Jun 2008 15:22:15 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2200@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Regarding date:&#60;br /&#62;
I mean the submitted form, when your receive it by email and you use {date_created} in the email template. It WILL show YYYY-MM-DD.&#60;/p&#62;
&#60;p&#62;Regarding empty fields:&#60;br /&#62;
Well after several tries, I have to conclude I should USE the empty fields, cause otherwise it will look weird with use of the pulldown's and radio button. Anyways, to hard to explain. Sorry.&#60;/p&#62;
&#60;p&#62;New problem / question:&#60;br /&#62;
Is there a way to use product codes in your order form.&#60;/p&#62;
&#60;p&#62;For example:&#60;br /&#62;
You have a choice of webhosting packages WEB 1, WEB 2 and WEB 3.&#60;br /&#62;
The customer selects WEB 2 on the order form and sends the order form to us.&#60;br /&#62;
Then we receive the order form with WEB 2 &#38;#38; productcode 52001. The customer does and will not see the productcode.&#60;/p&#62;
&#60;p&#62;Is this possible? Please advice, cause this would be great for our billing department. We are currently solving this problem by showing the productcode on the form.
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2198</link>
<pubDate>Fri, 27 Jun 2008 13:46:40 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">2198@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Which date shows YYYY-MM-DD? Is your form having date fields?&#60;br /&#62;
The date field already use DD-MM-YYYY or MM-DD-YYYY.&#60;/p&#62;
&#60;p&#62;To remove empty fields from your review page, edit &#60;strong&#62;includes/view-functions.php&#60;/strong&#62; file, search around line 2330 and you'll find this code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;foreach ($entry_details as $data){&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
Right under that line, insert this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if($data[&#38;#39;value&#38;#39;] == &#38;#39;&#38;amp;nbsp;&#38;#39;){
	continue;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;code&#62;&#60;/code&#62;&#60;br /&#62;
that would remove empty fields.
&#60;/p&#62;</description>
</item>
<item>
<title>MvdL79 on "Change in date display in send form?"</title>
<link>http://www.appnitro.com/forums/topic/change-in-date-display-in-send-form#post-2195</link>
<pubDate>Thu, 26 Jun 2008 21:24:18 +0000</pubDate>
<dc:creator>MvdL79</dc:creator>
<guid isPermaLink="false">2195@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;One more request: the submitted form removes empty (or not used fields), this is really great. However when you review the filled in form, it does show those fields.&#60;/p&#62;
&#60;p&#62;Is it possible to remove it on review page as well? So the not filled in fields are removed as well there (just like in the submitted form you receive by email)?
&#60;/p&#62;</description>
</item>

</channel>
</rss>

