Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Using search on a non-default pageI found the issue, although it may be difficult to solve in your case, because it appears that you’re rendering My Calendar in a widget within the content, and not within the content itself; is that correct?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Using search on a non-default pageThere are a number of differences between how things work when using the primary calendar and using a secondary calendar, but the search should work – I’m doing some testing now to see what I can learn. I have reproduced the issue locally, so I think I have all the information I need to resolve it.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Internal links don’t work?Well, the link in that event seems to be wrong – the link I’m seeing in the event is “https://naturalhealthgodsway.ca/eventcalendar/advanced-foraging-workshop-making-your-own-trail-kit-3-day-event/“, but the actual event is at “https://naturalhealthgodsway.ca/smartevents/advanced-foraging-workshop-making-your-own-trail-kit-3-day-event/“.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] 404 Error on next month clickWhat plugin are you using for the multilingual support?
That does make it sound like it may have been a caching issue – caching can have some unexpected effects some times!
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Icon SizesIn the current version, there are no settings for this; it’s all controlled using CSS. I do have an open issue for this to add some options for display in the next release: https://github.com/joedolson/my-calendar/issues/628
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] ResponsiveWell, the mini calendar view doesn’t switch to a list view, so you could just use that view, instead. It only has dates in each cell, however.
Otherwise, what you’d need to do is override all the CSS that triggers the responsive view; you can find that CSS in
/my-calendar/css/reset.cssstarting on line 1514.For the next release, there will be an easier way; I’m adding a shortcode attribute that can be used to add a custom class, and if you use the class ‘disable-responsive’, that will disable the responsive behaviors.
I can’t say that I think it’s a good idea; the full table will be very hard to use on a mobile device, but you can certainly do it.
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] can’t paid the ticketThe all-black button is caused by your theme; the theme has CSS that sets the default background color on :hover of all
buttonelements to black, but does not also set a text color.You could add something like
button:hover { color: white; }at WordPress > Customize > Additional CSS, although that could have other consequences around your site.Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Customize Main CalendarYou can add those styles at WordPress > Customize > Additional CSS.
The main calendar shortcode has three different views, and each has to be templated separately. Those settings at at My Calendar > Settings > Display, where you can turn on and off the various display elements for an event. That’s the no-code mechanism for customizing templates.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Customize Main CalendarIf you haven’t enabled PHP templates (which is done at My Calendar > Settings > Display), then there really shouldn’t be anything different about how the calendar is customized than it was in previous versions. The only significant change is that if you want to add custom CSS, you can’t do it by editing files within the plugin. You have to add custom CSS in some other way; either via Additional CSS in the Customizer or by uploading a custom CSS file.
It sounds like you were using My Calendar previously, and had implemented your changes before – did those just stop working? I’m a little unclear on what might have changed.
There are no ticket functions in My Calendar; those are only in the My Tickets plugin, so there’s nothing really to change there.
I suppose I could release a My Calendar lite…I’d feel kind of strange releasing a premium version of My Calendar that reduced functionality, but I guess I can imagine a market for it…
You can widen the Fri-Sat-Sun columns using something like
.sun,.sat.,.fri { width: 20%; }Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Sharing on Bluesky fails?Thanks for noting that! I’ve made a change to strip the ‘@’ sign from the handle when saving.
Are you able to share a link for the site that isn’t working? It might help for me to be able to look at the site; but without that, there are a lot of possibilities. Among the possible issues:
- Theme could be removing custom CSS
- Caching could be preventing the CSS from updating
- Theme could be modifying the HTML output so that the CSS does not apply
- Theme could be overriding the CSS with an overly-greedy selector
It is also possible that some weird conflict of settings is causing an issue, but even then, it would be beneficial to see the site.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] No message on empty monthSo this is working for me in my dev environment, so I assume I haven’t broken it. But I can easily imagine that a pagebuilder could be breaking it; they sometimes do some complicated things with content filters. I don’t know what that might mean it’s doing, but I’ve seen some strange things from page builders…
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Week daysThat did occur to me, but I figured it was easier to just ask…
Yes, that is an option – but there’s no user interface for it. You can turn them on using a filter:
mc_show_week_number. DocumentationForum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Recurring events on weekendsHmm. No. There is an option to set weekdays only, but it just ignores weekends, it doesn’t do anything like that.
Can you tell me exactly what the recurring pattern is? Is this something like “the 15th of every month”, but actually moves to the Friday before if it’s on a weekend?