Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Accessibility] Font size increase not working in latest versionCan you provide a link?
Thanks for reporting! I think that I’ve already fixed this for the next release, but I’ll double-check. The next release is a major update, so it’s going to be a little while.
Thanks! Added for next release.
I’ve never found a good way of handling this that will work well for all users. The problem is that the button trigger in the mini widget represents *all* events occurring that day, which could include any number of categories. As a result, I’ve always left it up to users to handle that display in whatever manner suits their use case. If you only have one event per date, that’ll work; but once there’s more, it’ll get to be a problem.
Thanks! Fixed for next release: https://github.com/joedolson/my-calendar/issues/602
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Expired EventsMy Calendar doesn’t remove expired events; they should show normally. Can you share a link and tell me where I *should* find an expired event?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Password protected pagsThe AJAX query is unable to fetch data because the page is password protected, most likely. If you disable AJAX navigation (My Calendar > Design > Scripts), you should be able to operate it on a password protected page.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] whitescreen since version 3.5Thanks for following up!
Forum: Plugins
In reply to: [WP Accessibility] Font size increase not working in latest versionVersion 2.1.9 moved the font sizes to CSS variables. If you have any front-end caching in place, you may need to clear the cache after the update.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] whitescreen since version 3.5A lot of plugins use ActionScheduler as a library to manage actions, so this is probably not caused by My Calendar, but pre-existing from some older data, that just came up with My Calendar added the library.
The error suggests that there’s corrupted data in the ActionScheduler table, where the primary key is 0 for more than one row.
Here’s an article that talks about solving that: https://clicknathan.com/web-design/woocommerce-actionscheduler-table-error/
There won’t be any data in the ActionScheduler table from My Calendar unless you’ve executed a migration from The Events Calendar, so as far as My Calendar is concerned, you can safely drop all of the data from there. But I can’t speak for other plugins.
You can go to WordPress > Appearance > Customize. There’ll be a section called ‘Additional CSS’, and you can paste it there. You may need to adjust the colors to get what you want, but the provided CSS is a start for you.
I’ve had one other report of this, but it mysteriously went away and I haven’t been able to reproduce it. Looking at your site now, I’m also not seeing this issue – the new months seem to be appearing as expected. Are you still seeing the problem?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Error in adminThanks for reporting! My 8.2 testing has been relatively light so far, so I appreciate that. Will be fixed in the next release!
Well, since the issue is resolved, there’s nothing I can look at to try and figure anything out. My first guess would be caching needing to be refreshed – I can see that you’re using WP Super Cache, so it’s very possible there could be a cache that wasn’t cleared. But that’s nothing more than a guess. Something to try clearing if this happens again, though.
The container for the current day always has the class
.current-day, and you can attach any custom styles you want to that class. The settings don’t cover every possible style, so adjusting with custom styles is the best way to get more detailed changes.Something like:
.mc-main .current-day button { background: #fff; color: #000 !important; }The
!importantis necessary in order to override some styles from Podcast Guru.