JMDS
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Posts Calendar] ResponsiveHi Steve,
I cannot really help on this one as the version of Fullcalendar used is not responsive. I am aware that there is a newer version available but do not know if the enhancements would help you out. When time permits I will look further into this as I appreciate it will become more and more important.
Forum: Plugins
In reply to: [WP Posts Calendar] Start DateGlad to have been able to help on this occasion.
Forum: Plugins
In reply to: [WP Posts Calendar] Start DateHi,
Try this instead. I have tested it here and it gives me the format you are looking for.
<h3><?php echo date(‘l jS M Y h:i:s A’,strtotime(get_post_meta($post->ID, ‘_jm_calendar_event_start’, true))); ?></h3>
Forum: Plugins
In reply to: [WP Posts Calendar] Start DateTry something like this,
<h3><?php echo date(‘l dS \o\f F Y h:i:s A’, get_post_meta($post->ID, ‘_jm_calendar_event_start’, true)); ?></h3>
Forum: Plugins
In reply to: [WP Posts Calendar] Start DateIf you add ‘true’ (no quotes) as the third parameter and you should get the result you are looking for.
Example:
<h3><?php echo get_post_meta($post->ID, ‘_jm_calendar_event_start’, true); ?></h3>Forum: Plugins
In reply to: [WP Posts Calendar] Start DateYou need to pass the post id as the first parameter.
Forum: Plugins
In reply to: [WP Posts Calendar] Start DateHi,
You should be able to get the start and end dates by using the get_post_meta function within your loop.
The keys used are ‘_jm_calendar_event_start’ & ‘_jm_calendar_event_end’
Forum: Plugins
In reply to: [WP Posts Calendar] Support for Custom Post TypesHi,
I have had a look at this but cannot replicate your problem.
The field names used are _jm_calendar_event_start & _jm_calendar_event_end
Forum: Plugins
In reply to: [WP Posts Calendar] Support for Custom Post TypesHi Scott,
There are no plans to add further features to the plugin. It was developed for a specific site and released in the hope it would be useful to others.
Forum: Plugins
In reply to: [SlimStat Analytics] [Plugin: WP SlimStat] Disable CookieThanks for the reply Camu.