<?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: Display Start and End Dates from &#039;Schedule Form&#039;</title>
		<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form</link>
		<description>Gravity Support Forums Topic: Display Start and End Dates from &#039;Schedule Form&#039;</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 20:13:33 +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/display-start-and-end-dates-from-schedule-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-79616</link>
			<pubDate>Mon, 08 Oct 2012 12:21:16 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">79616@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can make a page that shows active forms.  Those start and end times though are for a single form.  So, you would first have to return an array of all active forms, then loop through them, and extract the end times and display that as well.  It can be done using built-in Gravity Forms functions.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aechols on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-79585</link>
			<pubDate>Mon, 08 Oct 2012 10:54:07 +0000</pubDate>
			<dc:creator>aechols</dc:creator>
			<guid isPermaLink="false">79585@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It would be nice to make a page that shows active forms to the public.  If I could grab the start and end dates/times, I could make a page that would show currently active forms with the title and due date/time.  &#60;/p&#62;
&#60;p&#62;We've embedded the form into a single page with the form number, and uses GET to grab the number from the URL so we don't have to manually embed the form into a page every time.  Most of our forms are applications, so if we could use that data to populate another page, we won't have to add/remove the links manually and then everything would be automated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-79511</link>
			<pubDate>Mon, 08 Oct 2012 02:35:08 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">79511@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;WedEndev is still active here so I will leave this open in case they did get it working and would like to post their resolution.&#60;/p&#62;
&#60;p&#62;@aechols, if you like, you can post your question here and let us know what you would like to do and we can help you.  Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aechols on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-79449</link>
			<pubDate>Sun, 07 Oct 2012 21:09:44 +0000</pubDate>
			<dc:creator>aechols</dc:creator>
			<guid isPermaLink="false">79449@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is something that I'd be interested in too.  Did you ever get it working?  If so, can you share the code?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-35260</link>
			<pubDate>Wed, 14 Sep 2011 10:29:02 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">35260@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you post a link to your form and then explain what message you want, based on what dates, and where it should be displayed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WebEndev on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-35148</link>
			<pubDate>Tue, 13 Sep 2011 08:34:09 +0000</pubDate>
			<dc:creator>WebEndev</dc:creator>
			<guid isPermaLink="false">35148@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris,&#60;br /&#62;
Ok, I'm a little lost on this... This is my attempt, but I am getting errors:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Add Start/End Date/Time on Gravity Form
add_filter(&#38;quot;gform_pre_render&#38;quot;, &#38;quot;we_display_formdates&#38;quot;);

function we_display_formdates($form){

    //only for form id 9
    if($form[&#38;quot;id&#38;quot;] != 9)
       return $form;

    //Adding items to field id 8. Replace 8 with your actual field id. You can get the field id by looking at the input name in the markup.
    foreach($form[&#38;quot;fields&#38;quot;] as &#38;amp;$field)
        if($field[&#38;quot;id&#38;quot;] == 8){
            return $form[&#38;#39;scheduleStart&#38;#39;];
        }

    return $form;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Can you help me tweak it to make it work? :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-35137</link>
			<pubDate>Tue, 13 Sep 2011 03:02:04 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">35137@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can use the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_render&#34; rel=&#34;nofollow&#34;&#62;gform_pre_render&#60;/a&#62; hook and access these $form object properties:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
    $form[&#38;#39;scheduleStart&#38;#39;]
    $form[&#38;#39;scheduleStartHour&#38;#39;]
    $form[&#38;#39;scheduleStartMinute&#38;#39;]
    $form[&#38;#39;scheduleStartAmpm&#38;#39;]
    $form[&#38;#39;scheduleEnd&#38;#39;]
    $form[&#38;#39;scheduleEndHour&#38;#39;]
    $form[&#38;#39;scheduleEndMinute&#38;#39;]
    $form[&#38;#39;scheduleEndAmpm&#38;#39;]
    $form[&#38;#39;scheduleMessage&#38;#39;]&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>WebEndev on "Display Start and End Dates from &#039;Schedule Form&#039;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/display-start-and-end-dates-from-schedule-form#post-35020</link>
			<pubDate>Sun, 11 Sep 2011 09:19:09 +0000</pubDate>
			<dc:creator>WebEndev</dc:creator>
			<guid isPermaLink="false">35020@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way to display the Start and End dates/times that are selected in 'Schedule Form' section (located on the Advanced tab of the Form Settings)?&#60;/p&#62;
&#60;p&#62;It would be nice to tell the user when the form will expire and/or is valid for.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
