Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Unable to edit event since updateMaybe there’s a JS error being fired; do you see anything in the developer console?
Found it; will be fixed in the next release.
I’ve seen this issue with template editing before; it’s a CSS conflict of some kind, but I don’t remember exactly what the conflict was, so I’ll have to figure that out.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Unable to edit event since updateThe ‘Edit’ button should open a menu of editing options, which is a change from what used to be there. This may be opening somewhere other than where you expect it – but since I can’t see your site as if I was logged-in, there’s not much I can do to suggest alternatives. If you can locate it and send me a screenshot, I might be able to figure something out.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] No padding on eventsMy Calendar doesn’t really influence the single event view very much; what did it look like before?
The installation error is unclear to me; I’ve seen it, also, but pretty randomly – it doesn’t seem to correlate to when the ActionScheduler is being used and when it isn’t, or to cases where other plugins are also using it. You can provide the full stack trace if you’d like; any additional information would be useful.
I’ll look at the template editing. That may be have been under-tested, since it’s a legacy mechanism.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] popup error calendar eventsThe problem here is that the close button is behind some other element. I took a few minutes to look at the CSS, and I didn’t spot exactly what in the CSS was changing the stacking order. You can adjust it by adding
button.mc-toggle { z-index: 2000; }, but it would probably be better to find what’s causing the stacking problem.If you’re intending to have popups disabled, then it really doesn’t matter. If you might use them, then I’d recommend using the modal setting.
For an immediate fix, you can switch your JS handler from the legacy disclosure widget to the modal interface that’s been the default since version 3.4; go to My Calendar > Design > Scripts and choose ‘Modal’ as your default popup behavior.
The popup data will still be loaded in error on the page, but it won’t be visible.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Customize Main CalendarYou have the setting for
grid-header-colorand the setting forgrid-header-backgroundboth set to#ffffff; there was probably a bug previously that that ignored your settings for one of those colors.Issue identified; I’ll get an update out.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] ResponsiveIn the version released today, you can add the class ‘disable-responsive’ to your shortcode, e.g.
[my_calendar class="disable-responsive"]and that will disable the responsive behaviors.You’re doing direct database inserts; those are not going to save any of the WP_Post or post meta fields associated with events, so I wouldn’t expect it to work properly; and that’s been true for a long time. I’m not sure exactly how far back I’d have to go to find a version where inserting the event data directly into the database would be sufficient.
I’d suggest using the My Calendar functions for inserting events:
mc_check_data()andmy_calendar_save().Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Offer Subscription LinkSubscription links are fixed values; they’re always
https://yourdomain.com/feed/my-calendar-icsandhttps://yourdomain.com/feed/my-calendar-google.Export links are based on your current view; they export whatever you’re currently looking at, so they don’t really exist in abstract. However, you can use the My Calendar export API to create links that export whatever you want.
Forum: Plugins
In reply to: [WP Accessibility] Tootlbar not visibleThe value you have entered in the field for the toolbar location needs to be an ID attribute that appears somewhere on your site; it looks like you’ve entered something other than an ID.