Kieran O'Shea
Forum Replies Created
-
Forum: Plugins
In reply to: [Calendar] export eventsThere is an iCalendar available within calendar. Once activated on the calendar options page, simply visit your site
with calendar_feed appended, e.g.
example.com/?calendar_feedI hope the above from the installation page helps, if you need further help, please let me know
Forum: Plugins
In reply to: [Calendar] WP 5.3 broke Upcoming widgetThank you – I will implement this change
Forum: Plugins
In reply to: [Calendar] RTL support?The week start day can be either Monday or Sunday; in that regard the calendar conforms to the setting on the Settings -> General page of the WordPress admin – its right at the bottom of that page.
As for RTL support, generally that would be something your theme would need to support rather than the plugin – the calendar is rendered as a basic table of dates. If this isn’t working for you, I’d need to see an example of what a RTL calendar is supposed to look like in order to know if I can help support it or not
Forum: Plugins
In reply to: [Calendar] Widget disapeared with WP 5.2I have tried to re-create this on a vanilla version of WordPress 5.2.x, default theme and my plugin and have been unable to do so – all widgets display fine. Assuming that, as part of 5.2, other plugins and themes on your site have had updated to them, can you verify, that on your site, the widgets still don’t work even if you just have my plugin and the default theme active?
Forum: Plugins
In reply to: [Calendar] Widget Visibility OptionsPlease point me to the documentation regards this hook that jetpack uses and I’ll look at adding it. Thanks.
Forum: Plugins
In reply to: [Calendar] Widget Visibility OptionsWidgets are bound to sidebars rather than specific posts or pages, so if the sidebar in question is being displayed, it isn’t easy to exclude it. It can be done with custom code, but generally this is done on a site by site basis, rather than with generic options in a plugin
Forum: Plugins
In reply to: [Calendar] Events via iCal FeedYou can’t consume an iCal feed, only produce one. Once the feed is activated in your admin panel and you have added some events, you’ll see the iCal data on the following URL
https://www.rodwellbuildingservices.com/?calendar_feed
Forum: Plugins
In reply to: [Calendar] Event Description Line BreaksFrom what I can see, the only way to re-create that issue is if you’ve actually pasted a link into your event description in some way, perhaps accidentally by copying another event. Go into the affected event, in the text box do Ctrl-a and hit delete, then re-type the content, using only <br /> tags – you should find it renders correctly
Forum: Plugins
In reply to: [Calendar] Event Description Line BreaksI have found the issue here and will fix it in the next release. In the meantime, modify the calendar plugin code in calendar.php and replace this
$desc = !empty($_REQUEST['event_desc']) ? wp_filter_nohtml_kses($_REQUEST['event_desc']) : '';
with
$desc = !empty($_REQUEST['event_desc']) ? wp_kses_post($_REQUEST['event_desc']) : '';
you should find two instances. Also find this
htmlspecialchars(stripslashes($event->event_desc))
and replace with this
stripslashes($event->event_desc)
there will be one instance of thisAfter you’ve done this, any new events you save or events you edit with BR tags will get saved/displayed correctly
Forum: Plugins
In reply to: [Calendar] Myltilanguage site support solutionThanks, yes, this is helpful, I’ll bundle that change in future releases
Forum: Plugins
In reply to: [Calendar] Anyone know The StatusThe plugin has been re-activated in the repository, thanks to all users for their patience
Forum: Plugins
In reply to: [Calendar] Anyone know The StatusAs re-enabling the repository requires a full review of the plugin, I’ve been asked by the WordPress team to bring a few other elements of the plugin up to date before they re-enable the repository. As the plugin is over 10 years old I suppose this is to be expected.
I therefore just wanted to post a further update to users here that this is in hand and to apologise for the continued delay in restoring access to updates.
I’m working on the updates this weekend and hopefully we should see some progress as we get into next week.
Forum: Plugins
In reply to: [Calendar] Why has this plugin been withdrawnRegards criticality, a bad actor would have to have both access to your WordPress dashboard and that too be a privileged user (by default this level is contributor), providing you trust your users at this level, the risk will be minimal.
Forum: Plugins
In reply to: [Calendar] Why has this plugin been withdrawnThe update you seek has been released, hopefully the repo will be unlocked soon so you can get access to it. Apologies for the delay in the fix.
Forum: Plugins
In reply to: [Calendar] Anyone know The StatusThe update you seek has been released, hopefully the repo will be unlocked soon so you can get access to it. Apologies for the delay in the fix.