<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.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>THE MOLITOR FORUMS &#187; Topic: How to change time and date format in the submission form</title>
		<link>http://www.themolitor.com/forums/topic/how-to-change-time-and-date-format-in-the-submission-form</link>
		<description>THE MOLITOR FORUMS &#187; Topic: How to change time and date format in the submission form</description>
		<language>en-US</language>
		<pubDate>Wed, 29 Apr 2026 12:48:24 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/how-to-change-time-and-date-format-in-the-submission-form" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "How to change time and date format in the submission form"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-change-time-and-date-format-in-the-submission-form#post-31689</link>
			<pubDate>Mon, 03 Nov 2014 10:17:50 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">31689@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>If you're making changes and don't see anything happen, be sure you cleared your browser cache and/or any caching plugins you might be using.</p>
<p>If that doesn't help, please provide a link to your site with those changes and I'll take a look.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>INAS on "How to change time and date format in the submission form"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-change-time-and-date-format-in-the-submission-form#post-31680</link>
			<pubDate>Mon, 03 Nov 2014 01:06:21 +0000</pubDate>
			<dc:creator>INAS</dc:creator>
			<guid isPermaLink="false">31680@http://www.themolitor.com/forums/</guid>
			<description><p>Hi!<br />
I managed to change the times in post-form.php successfully. </p>
<p>But wasn't able to change the date format. </p>
<p>I changed<br />
<pre><code>//DATE PICKER
    jQuery(&#039;#postDate&#039;).datepicker({
    	altFormat: &#34;yy-mm-dd&#34;,
    	dateFormat: &#34;yy-mm-dd&#34;,
    	nextText: &#34;→&#34;,
    	prevText: &#34;←&#34;,
    	dayNamesMin: [ &#34;S&#34;, &#34;M&#34;, &#34;T&#34;, &#34;W&#34;, &#34;T&#34;, &#34;F&#34;, &#34;S&#34; ]
    });</code></pre>
<p>to:<br />
<pre><code>//DATE PICKER
    jQuery(&#039;#postDate&#039;).datepicker({
    	altFormat: &#34;dd-mm-yy&#34;,
    	dateFormat: &#34;dd-mm-yy&#34;,
    	nextText: &#34;→&#34;,
    	prevText: &#34;←&#34;,
    	dayNamesMin: [ &#34;S&#34;, &#34;M&#34;, &#34;T&#34;, &#34;W&#34;, &#34;T&#34;, &#34;F&#34;, &#34;S&#34; ]
    });</code></pre>
<p>I first just changed dateFormat: "dd-mm-yy", (notting changed) and then also changed altFormat.<br />
Notting helped. What have I done wrong. </p>
<p>I also have one more questing regarding this...<br />
In the US the week seams to start on Sundays, but here it starts on Mondays. Can I change witch day comes first in the calendar by changing dayNamesMin: [ "S", "M", "T", "W", "T", "F", "S" ]   to:    dayNamesMin: ["M", "T", "W", "T", "F", "S" , "S"] </p>
<p>Just need to ask before i I mess something totally up ;-)
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "How to change time and date format in the submission form"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-change-time-and-date-format-in-the-submission-form#post-31658</link>
			<pubDate>Fri, 31 Oct 2014 10:28:21 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">31658@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>The submission form has to have the times manually hard coded so that they can appear in a drop down. You can adjust the format for the time in post-form.php on lines 146-241.</p>
<p>For the date, you can adjust the format in custom.js on lines 136-143...</p>
<pre><code>//DATE PICKER
    jQuery(&#039;#postDate&#039;).datepicker({
    	altFormat: &#34;yy-mm-dd&#34;,
    	dateFormat: &#34;yy-mm-dd&#34;,
    	nextText: &#34;&#38;rarr;&#34;,
    	prevText: &#34;&#38;larr;&#34;,
    	dayNamesMin: [ &#34;S&#34;, &#34;M&#34;, &#34;T&#34;, &#34;W&#34;, &#34;T&#34;, &#34;F&#34;, &#34;S&#34; ]
    });</code></pre>
<p>Hope that helps!</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>INAS on "How to change time and date format in the submission form"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-change-time-and-date-format-in-the-submission-form#post-31645</link>
			<pubDate>Fri, 31 Oct 2014 04:09:37 +0000</pubDate>
			<dc:creator>INAS</dc:creator>
			<guid isPermaLink="false">31645@http://www.themolitor.com/forums/</guid>
			<description><p>Hi!</p>
<p>In Norway where I live the normal way to write the date is:<br />
 31. oktober 2014<br />
and time from 00:00 to 24.00</p>
<p>i have chosen this formats in Wordpress. But even so the format of date and time in the submission form is still american.<br />
Way doesn't it pick these formats from WP?  That would have been great :-)<br />
People here doesn't really understand the difference between AM and PM (or we mix them up and don't remember what's what) So: I need to change this. But how...?</p>
<p>Ingunn
</p></description>
		</item>

	</channel>
</rss>
