Joe Dolson
Forum Replies Created
-
I think that this original thread is actually resolved, however, with X.com no longer providing any free API.
Note: follow up from https://wordpress.org/support/topic/update-when-posts-are-edited-ignored/
Question: can you tell me whether the toggle between ‘Don’t Post’ and ‘Post’ is checked on your posts? This is a different type of bug depending on whether the toggle is showing ‘Post’ selected, when it should show ‘Don’t Post’ or if the toggle is showing ‘Don’t Post’, but is posting anyway.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] how 2 change layout of hcardWhat have you done, specifically? I just re-tested, and this works as expected.
I copied the file to my theme using the Copy button at My Calendar > Design > Templates, then edited the template to make an easily identifable change, and it immediately showed up as expected.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Lien direct dans le titreYou can use the ‘More information’ link in the event input fields, then change the title template to use
{link_title}instead of{title}When the event has a link, it’ll show a linked title; if it doesn’t, it’ll show the button to trigger the details modal.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Recurring Events Acting StrangelyIs this happening specifically with older events; events created several years ago? Does it happen if you edit the same event a second time?
Forum: Plugins
In reply to: [Able Player, accessible HTML5 media player] Captions area emptyAre you able to share a URL? I’d like to see what’s rendering actually, so I can identify what might be going on. I can’t reproduce locally.
Automatically closed threads can’t be re-opened; so please open a new support thread for that!
Forum: Plugins
In reply to: [Able Player, accessible HTML5 media player] Captions area emptyThe
descriptionsparameter adds audio descriptions. To add captions, you’d want to to usecaptionsparameter.That’s on me; I made a class change in the visibility toggle buttons, but I failed to ship an updated minified version of the JS file in the last release. Changes were made, but only in the development version of the JS.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] how 2 change layout of hcardTemplate support for hcards hasn’t been shipped yet. It is done, but not yet released. You can see the implementation on Github.
I haven’t yet decided whether this is reasonable to ship in a minor release or needs to wait for a major release.
You need to switch the URL to use
https; your actual captions file is being loaded ashttp://www.bestopportunities.org..., and is being blocked by the browser as mixed-content.Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Recurring Events Acting StrangelyI haven’t been able to reproduce this yet, so I’ve got a couple follow up questions.
- Do you only see the notice saying “Some dates in this event have been deleted. Changing the date or repetition pattern will reset its scheduled dates.” on events where you have, indeed, deleted dates?
- When you edit an event, there are four hidden input types for the prevent event date/time:
prev_event_begin,prev_event_time,prev_event_end, andprev_event_endtime. Do any of those values *not* match the values shown for the event date?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Recurring Events Acting StrangelyI made a change in 3.7.14 that fixed a bug where all-day event instances were regenerated when the event was updated, so this seems plausibly related.
Does the same thing happen if you delete the instance, then fully leave the editor, come back, and then make an update? (That’s a question mostly to test whether there’s residual data not updated immediately after a save, or if it’s persistent.)
Verifying when event instances need to be re-generated is one of the trickier areas, and it *is* possible there could be something residual, as that calculation is based on testing the difference between the stored event date/time data and the new event date/time data.
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Nothing posting on MastodonInteresting. I’ll have to see whether there’s any way I can detect that a connection isn’t actually valid. Thank you!
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Display space between eventsYou have an inline style in your custom CSS that’s setting the
headerelement to a height of 150px:/*Adjust the Header Block height.*/
header {
height: 150px;
}It looks like it’s intended to target a specific block, but it’s too broadly scoped, and is impacting *all*
headerelements. You’ll probably want to scope that more narrowly to what it’s expected to target.You’ve also added a custom CSS for calendar articles:
/*Set my calendar header height*/
.mc-main article{
height: 50px;
}You probably will be able to remove that once you’ve refined the first block of CSS. It’s also impacting your event single view.