<?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: Events Calendar Pro</title>
		<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro</link>
		<description>Gravity Support Forums Topic: Events Calendar Pro</description>
		<language>en-US</language>
		<pubDate>Fri, 17 Apr 2026 06:34:08 +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/events-calendar-pro" rel="self" type="application/rss+xml" />

		<item>
			<title>Tim Bowen on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-24719</link>
			<pubDate>Tue, 03 May 2011 14:01:50 +0000</pubDate>
			<dc:creator>Tim Bowen</dc:creator>
			<guid isPermaLink="false">24719@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Updated tutorial here: &#60;a href=&#34;http://creativeslice.com/tutorials/gravity-forms-events-calendar-submissions/&#34; rel=&#34;nofollow&#34;&#62;http://creativeslice.com/tutorials/gravity-forms-events-calendar-submissions/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Edwin on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-22771</link>
			<pubDate>Fri, 08 Apr 2011 07:27:18 +0000</pubDate>
			<dc:creator>Edwin</dc:creator>
			<guid isPermaLink="false">22771@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The problem is the diffrence in the dateformat the two plugins use.&#60;br /&#62;
And as the date format in Events Calendar pro is the international date format (ISO) YYYY-MM-DD&#60;br /&#62;
And also the ISO format is requested by more GF users for non Events Calendar pro issues.&#60;br /&#62;
So in my opnion this is the way to go.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>letuslook on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-22762</link>
			<pubDate>Fri, 08 Apr 2011 05:21:39 +0000</pubDate>
			<dc:creator>letuslook</dc:creator>
			<guid isPermaLink="false">22762@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;yes, but as the problem is events calendar pro related maybe we should ask it on their forum?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Edwin on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-22616</link>
			<pubDate>Wed, 06 Apr 2011 10:19:46 +0000</pubDate>
			<dc:creator>Edwin</dc:creator>
			<guid isPermaLink="false">22616@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, I am struggling with the same problem.&#60;br /&#62;
Really would appreciate a solution.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>letuslook on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-22328</link>
			<pubDate>Sat, 02 Apr 2011 18:25:43 +0000</pubDate>
			<dc:creator>letuslook</dc:creator>
			<guid isPermaLink="false">22328@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I hope someone can figure this out and post an solution for this!&#60;/p&#62;
&#60;p&#62;~ Luc
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tim Bowen on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-22093</link>
			<pubDate>Wed, 30 Mar 2011 15:37:40 +0000</pubDate>
			<dc:creator>Tim Bowen</dc:creator>
			<guid isPermaLink="false">22093@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We're having 2 issues right now.&#60;/p&#62;
&#60;p&#62;1) 4 posts are created when a new event is added. This problem is not occurring with other custom post types so we're pretty sure this is an Events Calendar Pro bug but would love to hear any insights you may have as to why this could happen.&#60;/p&#62;
&#60;p&#62;2) We cannot get the date to be passed correctly in Events Calendar Pro. This was working perfectly before the Gravity Forms 1.5 update but we can't figure out what would have changed.  Here is the code in the functions file which used to work:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_pre_submission&#38;quot;, &#38;quot;format_event_date&#38;quot;);
function format_event_date($form){

    //replace 1 with your actual form id
    if($form[&#38;quot;id&#38;quot;] != 1)
        return;

    //replace 4 with your actual date field ID
    $date = $_POST[&#38;quot;input_6&#38;quot;];
    $dateend = $_POST[&#38;quot;input_8&#38;quot;];

    //replace with your actual time field ID
    $time = $_POST[&#38;quot;input_7&#38;quot;];
    $timeend = $_POST[&#38;quot;input_9&#38;quot;];

    $hour = str_pad($time[0], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure hour has 2 digits
    $minute = str_pad($time[1], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure minutes has 2 digits

    $hourend = str_pad($timeend[0], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure hour has 2 digits
    $minuteend = str_pad($timeend[1], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure minutes has 2 digits

    //formatting date
    $raw_date = &#38;quot;{$date} {$hour}:{$minute}{$time[2]}&#38;quot;;
    $formatted_date = gmdate(&#38;quot;Y-m-d H:i:s&#38;quot;, strtotime($raw_date));

    $raw_dateend = &#38;quot;{$dateend} {$hourend}:{$minuteend}{$timeend[2]}&#38;quot;;
    $formatted_dateend = gmdate(&#38;quot;Y-m-d H:i:s&#38;quot;, strtotime($raw_dateend));

    //replace with the IDs of the hidden fields that will hold the formatted dates
    $_POST[&#38;quot;input_20&#38;quot;] = $formatted_date;
    $_POST[&#38;quot;input_21&#38;quot;] = $formatted_dateend;

 }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Any help or pointing in the right direction would be greatly appreciated,&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
- Tim
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-22090</link>
			<pubDate>Wed, 30 Mar 2011 15:31:06 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">22090@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What part isn't working? This integration was posted by another user so it wasn't something we published as an official support tutorial.  I'm not familiar with Events Calendar Pro so if you can provide more details we may be able to assist.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tim Bowen on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-22085</link>
			<pubDate>Wed, 30 Mar 2011 14:46:40 +0000</pubDate>
			<dc:creator>Tim Bowen</dc:creator>
			<guid isPermaLink="false">22085@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Any update on this? We're having issues where each event is posted 4 times on submission and the dates are not working. Any suggestions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tim Bowen on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-19638</link>
			<pubDate>Tue, 01 Mar 2011 11:26:08 +0000</pubDate>
			<dc:creator>Tim Bowen</dc:creator>
			<guid isPermaLink="false">19638@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This method no longer appears to be working with the Gravity Forms 1.5. I've got it narrowed down to the problem being in this function code. Can somebody help point me in the right direction to fix it?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_pre_submission&#38;quot;, &#38;quot;format_event_date&#38;quot;);
function format_event_date($form){

    //replace 1 with your actual form id
    if($form[&#38;quot;id&#38;quot;] != 1)
        return;

    //replace 4 with your actual date field ID
    $date = $_POST[&#38;quot;input_1_13&#38;quot;];

    //replace 5 with your actual time field ID
    $time = $_POST[&#38;quot;input_1_14&#38;quot;];
    $timeend = $_POST[&#38;quot;input_1_15&#38;quot;];

    $hour = str_pad($time[0], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure hour has 2 digits
    $minute = str_pad($time[1], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure minutes has 2 digits

    $hourend = str_pad($timeend[0], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure hour has 2 digits
    $minuteend = str_pad($timeend[1], 2, &#38;quot;0&#38;quot;, STR_PAD_LEFT); //making sure minutes has 2 digits

    //formatting date
    $raw_date = &#38;quot;{$date} {$hour}:{$minute}{$time[2]}&#38;quot;;
    $formatted_date = gmdate(&#38;quot;Y-m-d H:i:s&#38;quot;, strtotime($raw_date));

    $raw_dateend = &#38;quot;{$date} {$hourend}:{$minuteend}{$timeend[2]}&#38;quot;;
    $formatted_dateend = gmdate(&#38;quot;Y-m-d H:i:s&#38;quot;, strtotime($raw_dateend));

    //replace with the IDs of the hidden fields that will hold the formatted dates
    $_POST[&#38;quot;input_1_17&#38;quot;] = $formatted_date;
    $_POST[&#38;quot;input_1_18&#38;quot;] = $formatted_dateend;

 }&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>mcdarwin on "Events Calendar Pro"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/events-calendar-pro#post-11597</link>
			<pubDate>Mon, 25 Oct 2010 11:47:28 +0000</pubDate>
			<dc:creator>mcdarwin</dc:creator>
			<guid isPermaLink="false">11597@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I followed the instructions you posted a link to: &#60;a href=&#34;http://events.creativeoven.com/2010/08/tutorial/&#34; rel=&#34;nofollow&#34;&#62;http://events.creativeoven.com/2010/08/tutorial/&#60;/a&#62; - and I think it works.&#60;/p&#62;
&#60;p&#62;First I created a form with all the custom fields. Some of them I gave a default value and checked the advanced option: &#34;Visibility - Admin only&#34;.&#60;/p&#62;
&#60;p&#62;I also created a &#34;Post title&#34; and a &#34;Post body field&#34;. Then I took the code from the link you&#60;br /&#62;
posted and put in the gravityforms.php file at the end.&#60;/p&#62;
&#60;p&#62;There is a couple of places in the code you will have to insert/replace the form ID with the actual ID of your form. Also you will have to insert the date field IDs. My form ID is 5 and the format for my date field has to look like this: &#34;input_5_2&#34; (form 5, field 2) and not like this &#34;input_2&#34; as in his example. At least that is what I did - you can see the field ID's in your form-page sourcecode.&#60;/p&#62;
&#60;p&#62;After sending the form I go to the event plugin in wp-admin and I see an unpublished event. I changed it to published and I got the data submitted to show up in my event calendar, pretty cool actually.&#60;/p&#62;
&#60;p&#62;Hope that helps you...
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
