Jonathan Jernigan
Forum Replies Created
-
Hey Ben,
That sounds like recurring events which are available in our Pro version, which you can see on our website: https://piecalendar.com/
With recurring events, you can set the event to Repeat Every 1 Year, which will do all the hard work for you.
Otherwise, you’d have to write some custom code to change the meta field value accordingly. Our meta fields are available here: https://docs.piecalendar.com/article/8-meta-fields
You’d need to alter _piecal_start_date accordingly.
Thanks!
Forum: Plugins
In reply to: [Pie Calendar - Events Calendar Made Simple] connector add onThe connector isn’t available for free as it’s a separate, paid addon: https://piecalendar.com/connector/
Hey there,
We’re looking into this and I’ll report back as soon as we’ve found a fix.
Thanks for the detailed report!
Hi @tutman, in addition to @tobifjellner ‘s great response, you can apply a shortcode parameter or block control to force the calendar to be in Swedish as well.
If using the shortcode, try this:
[piecal locale="sv"]If you’re using the block, look for the locale dropdown and select Swedish from the list.
Thanks!
Forum: Plugins
In reply to: [Pie Calendar - Events Calendar Made Simple] Quick Edit CheckboxAwesome! It certainly is the most simple and flexible calendar plugin out there, I have no doubt
Forum: Plugins
In reply to: [Pie Calendar - Events Calendar Made Simple] Quick Edit CheckboxAlthough it’s not a natively supported feature, Pie Calendar does work with popular plugins such as Admin Columns. Here’s more info on that: https://docs.piecalendar.com/article/47-display-pie-calendar-meta-fields-in-admin-edit-screens
A fellow Pie Calendar user also created a custom snippet that doesn’t require a plugin. Check that out here: https://github.com/craiggrella/piecalendar-admin-columns/tree/main
Hi there,
As you’ve discovered Pie Calendar is currently limited to one calendar per page. This is something we aim to fix in the future, but requires a huge amount of changes under the hood.
I don’t have an ETA for when/if this will be fixed, but it is on our feature request board.
Thanks!
Forum: Plugins
In reply to: [Pie Calendar - Events Calendar Made Simple] Starting and Ending Date / TimeHi there,
This is done for a number of technical reasons and majority user preference, but it’s possible to disable that directly on the block, or with a shortcode attribute:
[piecal automaticEndDates=false]Hope that helps!
I’m reasonably confident that an AI assistant like ChatGPT (even the free version) will be able to combine the context you’ve provided along with our help docs to write the code for you.
Creating custom functions like this are developer level features and not something we can offer, but it’s definitely possible to achieve what you’re after.
Thanks
Hi there,
It sounds like the best solution would be to use custom fields and show those in the popover content. That way you don’t have to modify functions.php each time.
Here’s some articles that will help you: https://docs.piecalendar.com/article/50-using-custom-field-data-in-pie-calendar-popover
https://docs.piecalendar.com/article/70-rendering-html-in-popover-event-details-area
Also note that we have a bunch of popover related hooks and filters you can use too. More info here: https://docs.piecalendar.com/article/18-available-hooks-filters
Thanks!
Hi there, that first portion of the error message indicates that there’s caching or performance optimization plugins moving the required plugin files around:
Uncaught ReferenceError: piecalUtils is not definedYou seeing multiples of the Pie Calendar controls also tells me heavy caching is at play here. I’d recommend trying to exclude Pie Calendar from being optimized/minified on the calendar page.
Whether this is possible in JetPack I’m not sure, but I’m certain that if you disable jetpack it’ll likely start working. In other plugins like Perfmatters or LiteSpeedCache, you can exclude it something like this:

Hi there,
No calendar rendering at all on the front-end sounds like a plugin conflict or caching/performance plugin issue. Can you check for console errors on the front-end?
Also, do you have more than 1 piecal shortcode on the page? If so, that might be the issue.
Let me know what you find.
Forum: Plugins
In reply to: [Pie Calendar - Events Calendar Made Simple] All Day Event not saving valueHey Alisha,
I’m going to close this due to time, but feel free to reach out if you need further assistance.
Thanks!
Hi there,
This isn’t a native feature of Pie Calendar, but you could always write a snippet to automatically enable that. Our meta fields are here for reference: https://docs.piecalendar.com/article/8-meta-fields
You’d just need to set the meta field _piecal_is_event to 1 in the database.
Thanks!
Forum: Plugins
In reply to: [Pie Calendar - Events Calendar Made Simple] Configure day names in calendarHi there,
You can use our hooks and filters to configure this: https://docs.piecalendar.com/article/18-available-hooks-filters
The underlying calendar is based on Fullcalendar.js, so you can check out their docs for what options they have in terms of date display: https://fullcalendar.io/docs/date-display
Thanks!