Joe Dolson
Forum Replies Created
-
There isn’t currently a way to mark an event as cancelled, although it’s on my roadmap.
However, you can change the title on just one event in a recurring series. While logged-in, find the event you want to edit. Open the event and click on ‘Edit Date’ to edit the details for only that date of the event.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Unable to load custom icons?You can always replace the built-in icons, but I wouldn’t recommend it; your changes will be overwritten as soon as you update the plugin.
This could be a filesystem issue; what type of server are you on?
The
show_todayargument for the upcoming events shortcode was deprecated in my last major release – mostly because it created a lot of complexity in the code and had a confusing implementation. The code was simplified to produce events that start after “now”, whenever that currently is.But that really should be including events that are happening today, as long as they’re not in the past.
One thing you can use is the
[my_calendar_today]shortcode, which *only* shows today’s events. It’s a much simpler way of getting the events happening today.Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Scheduled Days showing one day off.It’s just the back-end display; it’s a known issue that I expect to ship a fix to in the next release. The actual dates are correct, they just aren’t displaying in the right timezone in the admin.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Unable to load custom icons?So, it’s possible that the issue you’re experiencing is a caching one; try adding your custom icons, then going to My Calendar > Settings > General and checking “Clear My Calendar fragment cache”, then saving settings.
Because replacing icons doesn’t have any corresponding database behaviors, it doesn’t have any mechanisms for automatically clearing the cache, so it may be that the images are fine, but the site is still reading from the icon cache, instead.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Unable to load custom icons?Is that file currently present in the directory? I checked the URL for where that file should be found, and did not find it there; but I don’t know that it is currently present.
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Bluesky no images in feed@signorrossi Yes, that’s part of what’s very different in how Bluesky handles cards. Other networks handle cards centrally – they check the link, find the
ogdata, and generate a card from it. Bluesky requires the agent that creates the social media update to create the card. When you post it on Bluesky, the agent isbsky.app, and they create the card.Having support for cards will happen in the next release of the free version; it just won’t have image support. In my initial implementation of Bluesky support, I didn’t realize that this particular aspect was handled differently.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Error 0Error 0 means that the site failed to load the target page, which usually means that there’s a URL problem – you added a statement to this message that “the links in the header were still on the test site url”, and that would mean that it was trying to load a page that didn’t actually exist. If you’ve now changed the URLs in the new site, then you should be OK.
Yeah, I really really wish that media query max-widths accepted regular CSS variables. It becomes a lot more complicated without that. I have some ideas, but none of them are just trivial, unfortunately.
One option is that I could have multiple responsive stylesheets at different common breakpoints, and users could select what they want. Currently, I’m thinking that’s the easiest solution.
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Bluesky no images in feedMost likely, I’ll only offer the image support in Pro. I don’t support image uploading in the free edition because – simply speaking – I don’t have enough time to support it at that scale. Image uploading is complicated, and there are a lot of edge cases.
Is it excessive? Possibly. But I only have so much time, and I have learned from hard experience that adding too many features to free plugins is a mistake. It’s a hard reality – but the free version of the plugin is *free*, and I earn nothing from it – but it still requires many hours of labor to maintain and support.
The Upcoming Events widget has a lot of settings, and the specific depend on what you’ve configured. That includes a setting to toggle between whether ‘after’ refers to days or to events – so what are the actual settings you’re using?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Unable to load custom icons?What is the name of the file you’ve added? That URL provides numerous ways to download the image, so I don’t have enough information to verify whether the path you’ve created is correct.
That’s interesting; it suggests that something was generating a new ID on each page load, because that would cause this problem. I’ll have to experiment and see if I can reproduce it.
Looks omitted, based on the code history. I’ll get this in the next release, which should be pretty soon.
I’m looking at this, and *probably* the issue is that My Tickets isn’t checking to verify that it’s inside the loop before rendering the cart. It checks whether it’s the main query, and in 95% of cases that’s sufficient, but it isn’t checking for the posts loop.
I’ll have to do some archaeology to see if there’s a reason I’m not checking that; I have many other plugins that do similar things, and they generally check for the loop, so I’m not sure whether this is an oversight or something that I did for a specific reason. If so, I should have left future me a note about it…