Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Customise entry on calendarNo question, the documentation can always stand to be expanded…I do what I can, but I always feel like I’m leaving that behind.
I’ll get the documentation for those updated and post here when I have.
There isn’t a list of variables available for category colors, because the names of those variables are generated based on the names of your categories. However, they follow a fairly predictable pattern (at least, in western languages) – e.g.,
var(--category-mc_general)is the class for the category with the name “General”. If you had a category like “Sports Days”, it would be--category-mc_sports-daysThey all follow the pattern “–category-mc_” followed by the slug-ified category name.
Forum: Reviews
In reply to: [My Calendar - Accessible Event Manager] Fantastic !Thank you! Glad it’s helping you out!
No, nothing has changed about that as far as I know. I just tested, and it appears as expected.
It is an optional configuration; if you don’t have it checked in the settings at My Calendar > Settings > Display for the ‘Single Event Popup’ option, then it won’t appear – is that unchecked for you?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Customise entry on calendarWhat are you using as a template for the time? There are template options that handle that for you; if you’re doing something like {time} – {endtime}, that’s going to be trickier, though. I’d recommend using something like
timerangeAdding a pipe character before the title can be done in the title template at My Calendar > Settings > Display “Event title (grid)”, if that’s something you want.
The colored border will be a bit trickier. The default styles don’t apply category colors to borders, although all the classes and style variables are available so you could author custom CSS for that, e.g.
.mc-main .calendar .mc_general .event-title. { border-left: 4px solid var(--category-mc_general); }I may in the future add additional options for how to use category colors, but for the time being doing something with them other than the available options requires you to write your own CSS.
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.