<?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 Topic: change month in date to 3-letter abbreviation</title>
		<link>https://legacy.forums.gravityhelp.com/topic/change-month-in-date-to-3-letter-abbreviation</link>
		<description>Gravity Support Forums Topic: change month in date to 3-letter abbreviation</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 10:15:16 +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>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/change-month-in-date-to-3-letter-abbreviation" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "change month in date to 3-letter abbreviation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-month-in-date-to-3-letter-abbreviation#post-136729</link>
			<pubDate>Wed, 30 Jan 2013 19:28:24 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">136729@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Let us know if you get stuck.  We'll just need to know the field IDs of the three fields you want to string together, and the field ID where you want to store the value.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>beedle on "change month in date to 3-letter abbreviation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-month-in-date-to-3-letter-abbreviation#post-135872</link>
			<pubDate>Wed, 30 Jan 2013 02:16:19 +0000</pubDate>
			<dc:creator>beedle</dc:creator>
			<guid isPermaLink="false">135872@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Excellent.  That seems straight-forward enough.  I appreciate the code.  I'll go give that a test.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "change month in date to 3-letter abbreviation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-month-in-date-to-3-letter-abbreviation#post-135831</link>
			<pubDate>Wed, 30 Jan 2013 01:33:11 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">135831@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The easiest solution is to use three fields and merge them into one with the gform_pre_submission filter.  Create your form and add your three fields in the format you want.  Use CSS to position them however you like. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_submission_filter&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Add a hidden or admin only field (a single line text) and do not make it required.  This is where the merged date field will be stored.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;#39;gform_pre_submission_filter&#38;#39;, &#38;#39;concatenate_date&#38;#39;);
function concatenate_date($form) {
  // change input IDs here
  $dd   = $_POST[&#38;#39;input_25&#38;#39;];
  $mmm  = $_POST[&#38;#39;input_26&#38;#39;];
  $yyyy = $_POST[&#38;#39;input_27&#38;#39;];
  // input_37 is the hidden field
  $_POST[&#38;#39;input_37&#38;#39;] = $dd . &#38;#39;-&#38;#39; . $mmm . &#38;#39;-&#38;#39; . $yyyy;
  // return modified form object
  return $form;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That would take fields 25, 26 and 27 and concatenate them with dashes in between, and store that in field 37.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>beedle on "change month in date to 3-letter abbreviation"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/change-month-in-date-to-3-letter-abbreviation#post-135477</link>
			<pubDate>Tue, 29 Jan 2013 16:42:26 +0000</pubDate>
			<dc:creator>beedle</dc:creator>
			<guid isPermaLink="false">135477@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The client is asking for the date format DD-MMM-YYYY.  Of course three separate fields is not a solution. &#60;/p&#62;
&#60;p&#62;Looked at the previous thread below and I just can't believe that this can't be done.  With other premium WordPress products that I pay for (themes, other plugins, etc), I see users get help with this minor degree of customization all the time. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/can-month-numbers-be-changed-to-names&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/can-month-numbers-be-changed-to-names&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I understand it will break if I update, that's not a problem.  &#60;/p&#62;
&#60;p&#62;Please either explain how to make this change (I am fine overwriting one of the existing date types if that makes it easier... the one with periods, for instance).  Or at the very least, if I am forced to cobbled it together from three fields, please explain how to merge those into one field in the back end.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
