Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] MyCalendar display on mobileThere are a few different options for how to display the list view, adjustable at My Calendar > Settings > Display; they include options for showing more information.
The red ‘Delete’ link in the event row does not immediately delete the event; it asks for confirmation. At the top of the screen, there should be an alert that asks you to confirm deleting the event.
Forum: Reviews
In reply to: [My Calendar - Accessible Event Manager] So good !Thank you! Quick editing is on my road map, although I don’t have a particular timeline for it.
What do you imagine you’d want for easier access to CSS?
There isn’t an option available for adding that directly, although it can be done using a filter. The date format can be adjusted on a view-specific case by using the filter
mc_date_formatE.g.
add_filter( 'mc_date_format', 'customize_list_date', 10, 3 );
function customize_list_date( $date_format, $view, $time ) {
if ( 'list' === $view ) {
$date_format = 'l, F j, Y';
}
return $date_format;
}If you’re fine with it appearing more broadly, it can be added to the Primary Date Format field at My Calendar > Settings > Text > “Primary Date Format”.
The above code will *only* show that format in the list view, however.
This is fixed for the next release! Thank you!
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] RTL supportI’m shipping some updates to the RTL handling in the next release, although I’m sure it won’t cover everything.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Countdown widgetI don’t have any specific plans for that; but I’d certainly welcome an issue requesting the feature at https://github.com/joedolson/my-calendar/issues/!
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] calendar incomplete on subscriptionThere are two separate features: an export, which produces all the events in a given view and a subscription, which gives you the most recently created events – all events created within the last 90 days. That link is intended for users to subscribe, and automatically get new events you add.
There isn’t a feature that does both, though I have plans for collapsing these two features into a single link that serves both purposes.
Well, that sounds like an oversight on my part. Thanks for noting it! I’ll get that fixed in the core templates.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Add Media to Event is BrokenNo idea! The media inserter is a core WordPress feature, so it could have been caused by interference from some other plugin? But I’m glad you’ve got it working now!
Are these all-day events? If so, are you deleting the date, and then updating the post?
If that is the case, then I just fixed a bug that rebuilt recurring events on all-day events when you update the post, which could be relevant here.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Customise entry on calendarWhich view are you trying to style? The grid? An upcoming events list? The single event view? Having some context might help me know how to guide you.
My Calendar needs to set a few headers:
header( 'Content-Type: text/calendar; charset=UTF-8' );
header( 'Pragma: no-cache' );
header( 'Expires: 0' );
header( "Content-Disposition: inline; filename=my-calendar-$sitename.ics" );Other server-level requirements would be things like PHP version, but if you didn’t meet those requirements you wouldn’t be able to run the plugin at all.
I’m not sure what you’re really asking for.
There’s nothing unusual required server-side, and there’s no use of any external IPs.
I don’t recognize the parameter
mc-ical={id}; that’s not a My Calendar parameter. The My Calendar parameter for getting a single event ICS file isvcal={id}; the URL for getting the feed is https://camfc.co.uk/feed/my-calendar-google/, or https://camfc.co.uk/feed/my-calendar-ics/.I looked at your site and was able to download an event ICS file using the
vcallink on an event, so that seemed to be working normally, but the subscription links aren’t working – it looks like they’re returning a 404 error, which suggests that feeds are disabled. If you have something that’s disabling RSS feeds, it may also be disabling the iCal feed.It could also be that the feed permalinks need to be refreshed, in which case you could go to WordPress > Settings > Permalinks and re-save those.
Thanks for noting that; fixed. And this time I actually ran the code, to verify…
Everything’s been a bit rushed this week.