<?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: Need Help Setting Date Limit (I have searched but still need help)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/need-help-setting-date-limit-i-have-searched-but-still-need-help</link>
		<description>Gravity Support Forums Topic: Need Help Setting Date Limit (I have searched but still need help)</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 05:21:37 +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/need-help-setting-date-limit-i-have-searched-but-still-need-help" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Need Help Setting Date Limit (I have searched but still need help)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-setting-date-limit-i-have-searched-but-still-need-help#post-98023</link>
			<pubDate>Sun, 02 Dec 2012 15:39:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">98023@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In line 4 above, the form ID and field ID are both present.  That piece of information will need to change to work on multiple forms.&#60;/p&#62;
&#60;p&#62;I guess it depends on how many forms you have.  With dozens of forms it would be a pain to manage.  With three forms, you could just have three of these scripts and include the correct one in the page for each specific form.  If the field ID is always the same, it will be a little easier.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dietika on "Need Help Setting Date Limit (I have searched but still need help)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-setting-date-limit-i-have-searched-but-still-need-help#post-97910</link>
			<pubDate>Sun, 02 Dec 2012 06:52:03 +0000</pubDate>
			<dc:creator>dietika</dc:creator>
			<guid isPermaLink="false">97910@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What should the code look like if I have several forms?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Need Help Setting Date Limit (I have searched but still need help)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-setting-date-limit-i-have-searched-but-still-need-help#post-97647</link>
			<pubDate>Sat, 01 Dec 2012 04:46:00 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">97647@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Add this jQuery to your theme's header.php, before the call to wp_head().  Ideally,. this would be added conditionally, on the page where the form is going to be used, but let's start by just getting it to work:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[js]
&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery.noConflict();
jQuery(document).ready(function($) {
	$( &#38;quot;#input_1_8&#38;quot; ).datepicker({
	  minDate: &#38;#39;+1&#38;#39;,
	  gotoCurrent: true,
	  prevText: &#38;#39;&#38;#39;,
	  showOn: &#38;#39;both&#38;#39;,
	  buttonImage: &#38;#39;/wp-content/plugins/gravityforms/images/calendar.png&#38;#39;,
	  buttonImageOnly: true });
	});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You will need to change '#input_1_8' to the actual ID of the field which is utilizing the datepicker now.  After you do that, please post a link to the page on your site where the form is visible.  Thank you.&#60;/p&#62;
&#60;p&#62;Reference:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Need Help Setting Date Limit (I have searched but still need help)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-setting-date-limit-i-have-searched-but-still-need-help#post-97646</link>
			<pubDate>Sat, 01 Dec 2012 04:39:01 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">97646@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Do not edit the ui.datepicker.js as that will affect all uses of the datepicker, which might be undesirable, and also you would lose those changes when the plugin is updated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aomisore on "Need Help Setting Date Limit (I have searched but still need help)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-setting-date-limit-i-have-searched-but-still-need-help#post-96998</link>
			<pubDate>Thu, 29 Nov 2012 13:43:34 +0000</pubDate>
			<dc:creator>aomisore</dc:creator>
			<guid isPermaLink="false">96998@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have searched and found some threads with some info. The only problem is most of it is over my head. The one item I found which works easily says to edit the ui.datepicker.js. This works for stopping the date picker from allowing dates before TODAY, but it does not stop someone from typing in the date manually.&#60;/p&#62;
&#60;p&#62;I have seen links that point me here:&#60;br /&#62;
&#60;a href=&#34;http://docs.jquery.com/UI/Datepicker#option-minDate&#34; rel=&#34;nofollow&#34;&#62;http://docs.jquery.com/UI/Datepicker#option-minDate&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But I really have no clue what to do. I am looking to have someone give me explicit instructions. IE, put &#34;THIS&#34; here and put &#34;THAT&#34; there.&#60;/p&#62;
&#60;p&#62;I want to stop visitors from putting in a past dates and todays date.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
