Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Change ColoursGo to My Calendar > Categories and edit the category color.
See the documentation: https://docs.joedolson.com/my-calendar/my-calendar-categories/
Yes, you can delete individual items in a recurring event. There are some details about that in the documentation: https://docs.joedolson.com/my-calendar/my-calendar-add-event-repetition-pattern/#edit-event-screen
Forum: Reviews
In reply to: [My Calendar - Accessible Event Manager] I like it very much!Thank you! Answered your question in the support forums, as well.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Week numbersYes, it’s possible. It requires PHP; there’s a filter
mc_show_week_numberthat will enable week numbers.https://joedolson.github.io/my-calendar/mc_show_week_number.html
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] upcoming events list displayMostly, you need higher specificity on your CSS. You have to use a specificity equal to or higher than the original specificity. For the padding CSS, however, what you’ve used is event-specific; that will only impact the event with ID 4.
Event padding, try:
.mc-event-list.upcoming-events li { padding-bottom: 50px }Border radius, try:
.mc-event-list .list_preset_1 .mc-date-badge { border-radius: 0; }Without seeing what you did with your custom filter, I can’t tell you exactly where to put it, but generally speaking your choices are either 1) add the function to your theme’s
functions.phpfile, or 2) add a plugin header and place it in the plugins directory at/wp-content/plugins/.Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] High CPU usageThe PHP warnings are resolved in the latest release.
The CPU spikes aren’t something I can say for sure; though I suspect it has to do with AI bots. AI bots are well-documented as ignoring all server-side bot directives. My Calendar uses a variety of instructions for bots to prevent crawling unnecessarily, but if AI bots ignore that, they could end up crawling the My Calendar pages very heavily for no reason.
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] custom text on checkout buttonThat string is certainly not in the distributed Dutch translation (https://translate.wordpress.org/projects/wp-plugins/my-calendar/stable/nl/default/), so I can only assume it’s coming from Loco Translate, somewhere.
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] Tickets with repeating eventsMy Tickets is not supported with My Calendar recurring events. You need to create individual events for each ticketed occasion. This is because My Calendar’s recurring events are just stubs that refer back to the original event, and there’s no way to tie My Ticket’s ticketing model to those stubs.
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] custom text on checkout buttonLoco translate is what I’d suggest as a good option for changing the text; although it’s odd that you managed to change the text…but not to what you wanted. That sounds very strange to me. Did you change any other settings along the way? Some texts in My Tickets are dependent on event and ticketing settings.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Breaks the CustomizerAre you up to date with the latest release? This specific issue was fixed in 3.6.12, so it shouldn’t be happening if you’re up to date.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] upcoming events list displayI added some additional documentation about customizing list templates; hopefully that will help you.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Creation of pages linked to eventsThere’s no easy way to avoid that. You can add filters on the post type arguments to make them non-public, if you wish. You’d want to add a filter on the
mc_event_post_type_argsarray and changepublictofalse. The posts will still be created, but they wouldn’t be visible.This is caused because the two calendars have the same ID. You’ll want to explicitly assign the
idattributes in the shortcode, e.g.[my_calendar id="cal1"]and[my_calendar id="cal2"].Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] 401 Bluesky status update failedDoes this happen for every real post? The actual request made to Bluesky is the same whether it’s a real post or a test; so I’m not sure why there would be a difference.