Joe Dolson
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Style single event pageThat page has been redesigned significantly since that doc was published, and you’ll find those settings at the bottom of the column of custom CSS variables.
If you’re asking about customizing individual event pages, that’s mostly not handled in the styles screen; what’s shown will be controlled by your settings at My Calendar > Settings > Display.
My guess is that there was a cache in place that was flushed when you saved the page; but that’s pretty much just a guess. Thanks for following up!
The width issue is a bug, and is fixed for the next release. The height, however, is caused by your theme, which sets the minimum height for
selectto 40px, but doesn’t do the same for submit inputs. You could add custom CSS to change this:.mc-main input[type=submit] {
min-height: 40px !important;
min-width: auto !important;
}Forum: Plugins
In reply to: [WP Accessibility] security issue with Accessibility StatsPlease contact me privately via my website; I’m going to have this post removed while I investigate the issue.
So this wraps us back to the problem of assigning a page. The My Calendar page can be any page on your site; but if you can’t set the primary page, that’s a problem.
What is currently happening if you search for a page in that input field? Does anything happen at all?
Switching off the appending is near the bottom of the ticket information panel (the fields that are visible after clicking “Sell tickets on this post”). It’s a checkbox with the label “Don’t display form on event”.
The complimentary ticket entry is always visible when you’re logged in as an admin; it’s a way for you to add tickets for people without doing payment. It’s not visible to the public.
That is a very good question… there shouldn’t be ticketing information on that view. My Tickets doesn’t permit you to set up ticket sales information on the page that’s configured to show tickets. But it occurs to me that if you had set up ticket sales information and then *later* configured the page to be the one for showing tickets, that could happen. Is that possible?
Two steps for the icon: 1) go to My Tickets > Ticket Settings. Change the setting “Image shown on tickets” to “Featured image for Event”. Then 2) set a featured image on your event.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] ResponsiveThe responsive layout is the one that’s difficult, to impossible, to work with on a small device. The change in layout itself causes issues. In this particular instance the event items turn to dots with no identifiers.
So, that is actually an option: My Calendar > Settings > Display > Grid Options > Mobile View: “Switch to mini calendar”. You’ll probably want to turn that off, and set it to “no change”.
No change is still the responsive mode; it’s the one you see when you change the width of the desktop viewport, but it at least reduces the number of options you’re dealing with.
The “squished up” effect is coming from your custom CSS; and I apologize for that, I should have anticipated that problem.
Instead of
.mc-main .wed { width: 10%; }, etc., you need all those styles wrapped in a viewport declaration:@media screen and ( width >= 720px ) {
.wed { width: 10%; }
etc.
}All of the cell widths need to be constrained so they only apply when the viewport is wider the 720px, because that’s where the responsive is triggered.
I do want to be clear: I’m not opposed to a “lite” version, but it would be hundreds of hours of work to implement, and I have to be realistic.
The width is the width of whatever container the ticket shortcode is in. By default, it’s just appended to the end of the page, but you can check the box to hide the ticket input and use [ticket] inside a block and place it anywhere on the page – inside a column, for example, so that it’s narrower.
My Tickets doesn’t set any fonts at all; they’re just inherited from your theme. You can customize those in CSS, but there are no settings for it.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] ResponsiveI’m mostly curious how the table is usable on mobile without being responsive; I can appreciate that the layout could be easier, but how do you actually read it? On a mobile device, the cells are so narrow that they become fairly unreadable, in my experience.
I’m reluctant to just add more check boxes to the settings; they’re already pretty overwhelming to most users. But I’ll give it some thought – I’m currently in the late stages of preparing the next major release.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] 404 Error on next month clickOK. It seems like the function that updates the URL when Polylang is running isn’t returning the expected value; I’ll explore this. It might take a little while, because I don’t have a Polylang instance set up to test at the moment.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Internal links don’t work?Hmm. That’s strange; My Calendar doesn’t do any content filtering that I can recall or find; whatever you write in the event description should just stay as you wrote it.
The content does go through other WordPress content filters, so it could conceivably come from some other plugin, but that would be a pretty strange thing.
If you go in and edit the event to change the URL again, does it fix the issue?
It looks like I omitted to add a variable for that; I’ve added it for the next release.
That text is conditional on your calendar primary page already being set; but I note that it doesn’t verify that the page actually exists, and what you’re describing sounds like what might happen if your primary calendar page was trashed or deleted. Is it possible the My Calendar page was deleted?
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] modify the purchase pageMy Tickets only supports using one shopping cart; there’s no way to have it be a different cart for different events. All of the content is dynamically generated, so there’s no mechanism to edit it. What specific change do you want to make?