Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Clicking <> generates errorSounds like something that’s blocking the AJAX query to fetch the new pages; I might be able to tell more if you can provide a URL. But the first thing to try would be disabling all other plugins to see if it still happens then, and doing the same with your theme by switching to a default theme. That would help to isolate what might be causing the issue.
Yes, you can do that. Under My Calendar > Settings > Display, find the setting for Grid Options > Mobile View and set it to “No change”.
Then, in your shortcode, add the parameter
class="disable-responsive".Forum: Plugins
In reply to: [Able Player, accessible HTML5 media player] copying able player codeTesting this with a core theme, it rendered as expected. My guess is that something else is modifying the code before rendering; perhaps extra sanitizing in a plugin or your theme that’s breaking the code in the HTML block?
Forum: Plugins
In reply to: [WP Accessibility] Toolbar icon not loading after update to version 2.1.18Thanks for following up!
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Featured Image not showing on XIn order to do anything to help with this, I would need to at least have a link to your website.
Bluesky cards will only be supported in XPoster Pro, because I don’t plan to add support for image uploading to XPoster; but Twitter cards are based on meta data, and I can’t make any comments without a link to your site.
If the validator says that the cards are OK, then that’s what Twitter does to check the card, and they should show up. The fact that you need to add a parameter to get the link to load a card suggests that there’s something else going on on your site.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Mini calendar displayOK. You’ll want to add the
format="mini"attribute, to tell the shortcode to use theminiformat.Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Unable to edit event since updateAfter following up with @jolo677 externally, I’ve resolved the issue and will be releasing an update soon.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Google Maps is Showing Grey ScreenAre there any errors in the browser console? That often indicates an error in the API, which could come from API key restrictions. Without any detailed information, I’m only guessing, though.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Mini calendar displayThat’s a screenshot of the regular calendar view, not the mini calendar. I don’t have enough context to tell anything more about it, though.
Where is this being displayed, and how is it added? Is it a shortcode? A widget?
Forum: Plugins
In reply to: [NSFW] [My Calendar - Accessible Event Manager] configuration of calendarThe plugin uses the day set as the start of the week in WordPress > Settings > General. It only supports either Sunday or Monday, however.
“Day” selects the day view, not “today”; you’d still need to navigate to the current day. There is a button for shifting to today.
I’m not totally sure what you mean by “Is it possible to add an internal link to the same page for each event” – can you clarify? You can add a URL that isn’t the event’s page when you create the event, and you’d be able to use that; but if you want something else, I’m not sure what you’re looking for.
That
aria-labelledbyattribute is only relevant when the event is being displayed in a modal; it won’t have any impact on accessibility in this context. However, I should probably ensure that the attribute isn’t output in the single view, since it will raise false positives in testing tools.Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Mini calendar displayHmm. The mini calendar has never shown the titles of events. Do you have a screenshot of what you had before? Did you have custom work done on the calendar to change what was displayed?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Embed Video Codes not workingWhat I’d suggest is writing a small custom shortcode to render the script tag, instead of including it directly in the content. E.g.
add_shortcode( 'humix_embed', 'embed_humix_video' );
function embed_humix_video( $atts, $content ) {
$args = shortcode_atts(
array(
'id'=> '',
),
$atts,
'humix_embed'
);
$video_id = ( $args['id'] ) ? sanitize_text_field( $args['id'] ) : false;
return ( $video_id ) ? '<script data-ezscrex="false" data-cfasync="false">(window.humixPlayers = window.humixPlayers || []).push({target: document.currentScript, videoID: ' . "'$video_id'" . '});</script><script async data-ezscrex="false" data-cfasync="false" src="https://www.humix.com/video.js"></script>' : '';
}(untested.)
The ‘year’ view does show a full year of events, including past events. It specifically shows the events for the current year.
If you want to hide past events for the year, you could do that using CSS:
.upcoming-events .past-event {display: none; }Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] My Tickets could not contact PayPalGenerally speaking, a problem with HTTP resolution is going to be some kind of network problem, and is outside what I can control. Is this still happening?