I know you are busy with ALL in one SEO (I use it for my SEO on this site).
But is there any chance you can update this plugin to work with the latest WP version?
I only use it on the sidebar of the page, and all formatting is gone now.
My client has used this cal forever. And since I am unable to find any other cal plugin that pulls from the posts, this is going to be a nightmare to move away from.
You can see the issue sarahstreetgrill.com.
]]>Hey,
I have different custom post types and each of them has custom date fields.
Is it possible with this plugin to create calendars for each custom post where it pulls all the dates from custom date fields of those CPTs ?
I’d like to get a list or array of post_ids from the calendar – a copy of the ftcalendar_list shortcode for my child theme, that returns the post_id numbers.
Is it possible to add my new shortcode to a child theme that has an override in ft-calendar/class-shortcodes.php?
Thanks
]]>I saw in a recent changelog entry that it said “Fixes for custom post type UI”. Does that mean that I can use FT Calendar with a custom post type? I only saw posts, pages, and media as options.
]]>I’ve used your plugin for awhile, but recently received a notice that it hasn’t been updated in 2 years. Are you still supporting / developing it? Considering a per-pay version to help you supporting it?
]]>Hello!
Please, I need help!
How to show more events on this day on the same page of the same event, somewhere below, after description of the current event?
Example.
On the page of a current event, exm. Date=”2018-10-12″, title=”meeting with students”, display a list of more events with the same Title and the same date 2018-10-12.
Display a list of related events sorted by Title and by the same Date that current event.
Is anybody can help me how to do that?
Good Afternoon,
I was wondering if it is possible to display the selected calendar date and time, on a php template, i.e for a custom post type, so I can show it on the front end?
Thanks in advance for any help received.
Kind Regards,
Dave
]]>We’ve been using FT Cal for a few years, buy now that we’re updating our site, the basic look needs some improvement and adaptation to the new design.
Anyone can tip me off what are the css files to edit to achieve this?
Regards,
beu
Hi and thanks for the plugin. Great work.
Soory if I’ve missed something or cannot find the topic on this forum, but I’m wondering if there’s a function to hide past posts on the FT Calendar?
Your assistance would be much appreciated.
Cheers.
]]>In case anyone else is tearing their hair out … I’ve just found that there’s a conflict between ACF PRO’s Repeater field functionality (using the have_rows
functions) and Full Throttle Calendar. I needed to disable FT Calendar in order to get ACF Repeater Fields to output on my site using have_rows
.
single-post-page-shorts.js isn’t compatible with any version of jQuery past 1.9 since its deprecation in 1.7 and its removal in 1.9: https://api.jquery.com/live/
PLEASE change it so that your .live() functions are replaced by .on() to be more compatible, I’m tired of changing it every time your plugin updates.
Thanks!
]]>Hi – I LOVE this plugin,
it makes so much more sense to add all kinds of Custom Post Types to an associated event,
rather than having to create a different post type for events,
it just opens up a world of possibilities.
Unfortunately, it seems to conflict with Woocommerce Product post type…
The date picker doesn’t load, and entering the date values in manually seems to reset to current date anyway.
Have it working on other post types on the same site.
Is there any way fixed either in the free or premium version?
It would be so totally worth while!
Thanks heaps
Hi –
I LOVE the idea of this calendar working across multiple post types and supporting repeating events!
I need to enable it for my post types ‘Events’ as well as ‘Classes’.
So under FTCalendar > General Options >
Enable Calendar items for these post types:
I have selected only these 2 post types.
However, the Meta box ‘Calendar Fields’ is showing on all my post types, including posts, and pages.
Meanwhile [ftcalendar_post_schedule] shortcode is working on my single Classes, but not displaying anything on my single Events.
Please advise whether I may have made an incorrect setting somewhere, there may be a bug or conflict, or if these are things that would definately work correctly in the pro version?
This is the dev site https://www.testingground.dreamhosters.com/training/
Really isn’t another plugin out there that does exactly what we need love to hear if we can make it work!
]]>Hello,
We want a simple calendar page that looks like a correct calendar and displays posts from one category on the calendar days.
Can I display only posts from one category using this calendar?
Thank you,
Chris
]]>I updated my site to version 4.4.2 of WordPress, Suffusion version 4.4.9, & FT Calendar 1.5.
After the update, my FT calendar entries disappeared. They no longer display at all, although I’ve been using this plugin for over a year with no issue. What tipped me off to the problem is that when I tried to add a new entry to a post, it showed up as “unsuccessful.”
I went to the developers link & tried both of the prior versions of FT calendar, and neither work anymore.
Any ideas as to what might be conflicting?
For reference: As part of the troubleshooting, I deactivated all plugins except for the calendar, and it still did not display, so I’m assuming it’s either a theme conflict or a WordPress conflict.
Also, going back to 1.4 & the other prior version of FT Calendar required me to delete the plugin via the plugins menu, so 1.5 has, in effect, been deleted & reinstalled, too.
Thank you.
]]>I’ve discovered an issue in my install of WordPress 3.6 and FT Calendar 1.5. Many of my all day calendar events appear shifted to the following day in the iCal feed.
I’ve done some digging around and I’ve located the root of the problem. It seems that when all day events are created with FT Calendar, timestamp information is still saved on form submission. The timestamp data might be derived from whatever was in the date field of the form prior to the selection of the All day
checkbox.
It seems that iCal events are represented in UTC, and I am in the EDT timezone. Events that have timestamps late in the day in EDT are pushed into the next day in UTC. When FT Calendar generates the feed, all day events are represented in Ymd
format i.e., datestamp only and not timestamp. Since the timestamp info is absent, the feed interprets the event as taking place the following day.
I hope this is clear – or at least clear enough to point the developers to a fix. Thanks for this great plugin!
]]>Hi,
i use your plugin from 3 years now with pleasure and satisfactionand without problems. Thank to developers!!!
i update wordpress to 4.4.1, and update FullThrottle Calendar to 1.4 and because of different reasons i had to change my theme.
And now, in admin part, in widget when i want to configurate calendar of events by choosing wich calendar to display – cliking on save button, nothing hapens – i can’t select nothing from my list of calendars (thay are 5 if this is important) and accordingly, the dates do not diplays in the calendar online
]]>I’ve seen here a lot of topics about ordering events by start date. Unfortunately without answer. After a while I came up with working code. It is a Custom Select Query comining two tables. Showing posts that start_datetime is >= than current date and ordering ASC. Maybe it would help someone.
<?php
global $wpdb;
$date = date("Y-m-d");
$querystr = "
SELECT *
FROM wp_posts
JOIN wp_ftcalendar_events ON wp_posts.ID = wp_ftcalendar_events.post_parent
WHERE wp_posts.post_status = 'publish'
AND wp_posts.post_type = 'post'
AND wp_ftcalendar_events.start_datetime >= '$date'
ORDER BY wp_ftcalendar_events.start_datetime ASC
";
$pageposts = $wpdb->get_results($querystr, OBJECT_K); ?>
<?php if ($pageposts): ?>
<?php global $post; ?>
<?php foreach ($pageposts as $post): ?>
<?php setup_postdata($post); ?>
<?php $start_date = date_i18n("Y-m-d", strtotime( $post->start_datetime )); ?>
<?php the_title(); ?><br>
<?php echo $start_date; ?><br>
<?php endforeach; ?>
<?php endif; ?>
]]>
Hi
I just installed ft-calendar and it appears fine when Im writing a post, and I enter date and time of the event.
But when I enter the calendar afterwards its just blank.
https://gludby.dk/wp/?ftcalendar=kalender-til-gludby-dk
I′m using Virtue Theme.
]]>SMART Post Ordering is working, but I would like to edit how it works, Cude someone direct me to the place where SMART Post Ordering is set up/programed?
]]>Hello,
WordPress version 3.4.1
FtCalendar version 1.3.0
I wonder if there is a translation of the plugin Fran?ais?
And why in an article dates are as month / day/ year, not month / day / year ??????
thank you
]]>This is the best calendar plugin but if you are using woocommerce so you missed this feature , it conflicts with woocommerce ??
]]>The FT Calendar seems to be working with 4.0 but I’ve had to reapply the CSS tweak listed previously on the forum to have the date selector display. Is there a chance that this change can be made to the plugin source so we don’t have to apply it after every update?
div#ui-datepicker-div {
display: none;
height: auto;
width: auto;
clip: auto;
}
Hi!
When i installed the plugin everything worked fine.
Today i’m facing a new problem:
Inside the post, when i use the date picker to select a date event and after clicking “save” event” the date returned is completely wrong. It’s seems that it use the english date format to assign a date in my country format (France).
So the thing is, if I select the 5 September it will return the 9th of May. If I select a day over the 12th like the 13th it will return the actual day.
Is someone facing the same problem?
Please help.
]]>When i activate the plugin then the website is very slow. It used all the CPU i have on my server. When i deactivate the plugin the site is like a Ferrari.
Is there an update coming for WordPress 3.9.1 ??
Website is https://www.betuweroutes.nl
]]>With all versions of WordPress 3.8-3.9 using Twenty Eleven theme the site search does not work (just returns “Nothing Found Sorry, but nothing matched your search criteria. Please try again with some different keywords”). If FT Calendar is deactivated the site search works fine.
https://singletonbaptist.org.au/
Anysuggestions on what the conflict is caused by and how to fix it much appreciated.
is it possible to show upcoming event on the next 7 days with this shortcode? [ftcalendar_list]
thanks for any help ??
]]>Show Schedule Within Post creates a nice date/time box within the post, but if it’s a recurring event the post always shows the original date/time in the box. This is very confusing if the user clicks on a later calendar event for more info and it shows the original date/time in the box. I’ve had to turn this feature off if I have even one recurring event.
I suspect it’s because all later events refer to the original post (there’s no cloning or creation of new events). I can’t see how to otherwise handle this problem but it’s a no-go if you have repeating events anywhere.
]]>Hi There,
I eoulf like to remove the words “of events” from the title and just have it say “Calendar”. Could you tell me where I will find the right style sheet to make the change please?
1. How can I customize the color of the full page calendar? Is this in the paid version only?
2. How do I make an event not associated with a Post? I want some of my events to link to posts and others just to link to web links.
Thanks!
]]>