Joe Dolson
Forum Replies Created
-
What are you doing exactly to create the event in code? It sounds a bit like you’re creating an event but without an occurrence of that event, but I’m just guessing.
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] My Tickets flushing object cacheSo I had not previously realized that this was impacting the admin, and that pointed me in what I suspect is the right direction; this should be fixed in the next release.
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] My Tickets flushing object cacheI didn’t expect the last release to fix this issue; it did however eliminate a duplicate flush. I’m still not sure why this is firing as often as it is, but didn’t have time to explore it in the last release.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Only the latest event is clickableThat’s interesting. So, your theme is adding CSS that creates an empty pseudo-element injected before everything with the class ‘.button’ that is absolutely positioned and laid out to cover the nearest positioned ancestor. Because the My Calendar buttons don’t have a near ancestor that’s positioned, the pseudo element is covering the entire calendar – so any click anywhere on the calendar triggers that last item in the stack.
If you add a custom style like
.mc-main .event-title { position: relative; }, that will cause the pseudo-element to only extend across the event title, and the click region will be more appropriate.Forum: Plugins
In reply to: [WP Accessibility] Dequeue/Disable Plugin Hook (Beaver Builder)I would think that dequeuing the JS would be the most reasonable thing to do; that’s pretty much what any filter I’d add would control, so it doesn’t seem worthwhile to add an additional one.
I can’t think of any reason that conditionally dequeuing JS would cause any problems.
Forum: Plugins
In reply to: [WP Accessibility] Bug in 2.1.16 – stops working, console errorsUgh. Sorry about that; in dealing with the invalid zip file that the last commit created, I failed to notice that I’d introduced a bug, as well.
If you can provide any more context, it would be helpful. I haven’t been able to find a way to recreate this.
Forum: Plugins
In reply to: [WP Accessibility] Uncaught ReferenceError: Fingerprint is not definedIf you can provide any more context, it would be helpful. I haven’t been able to find a way to recreate this.
Forum: Plugins
In reply to: [WP Accessibility] Download and Update doesn´t workSeems like the last commit was corrupted on the SVN server, and the tag was missing on the server. I deleted and re-committed the 2.1.16 tag, and it seems to be working again. Let me know if you continue to see issues, though.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Styling calendar drop downsIt is possible to custom style select elements; it’s a pretty new thing in CSS, and isn’t supported yet in many browsers (Safari, Firefox, and Safari on iOS, for example).
But here’s some documentation about that: https://developer.mozilla.org/en-US/docs/Learn_web_development/Extensions/Forms/Customizable_select
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Getting Fatal Error on PluginThat seems like maybe you have an incomplete update of the plugin? That function was moved a few releases ago, and if you have some updated files and not others, you could conceivably get that error.
You can safely delete the plugin from WordPress if you make sure that the options “Drop database tables on uninstall” and “Delete plugin settings on uninstall” are *not* checked in the General settings for the plugin. Then you can reinstall.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Grid view font weightWithout seeing your site, I can’t really make a suggestion. This is most likely because your theme is using a high level of specificity to define what headings look like, and is overriding My Calendar; but without knowing exactly what it’s doing, I’d just be guessing.
Forum: Plugins
In reply to: [WP Accessibility] Toolbar location – css position setting is problem I thinkThanks! This will be fixed in the next release.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Styling calendar drop downsThe
selectelements used in My Calendar are standard HTML elements; they don’t use anything unusual outside of using a custom image for the dropdown element.I took a look at your site, and it doesn’t seem like there’s anything unusual in the elements there; they’re pretty standard. I’m wondering if you had something installed that was doing a replacement of select elements, but it’s no longer installed?
It looks like you’re using a different template for the list view and the grid view, and the list view doesn’t include the event description. Are you using custom templates? There’s no difference in support between the two views, but if they’re using different data, that will have an impact.
One thing I suggest might be switching to the more modern pop-ups; you can go to My Calendar > Design > Scripts and switch from “Disclosure Widget” to “Modal” for the JavaScript method – it’ll make things a bit more unified between the two views.