Kelly Choyce-Dwan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Museum] Cross Browser SupportOfficially we support IE9+. I’ve checked it out in IE8 and it’s useable, but not pretty (the “grid of posts” pages are the most affected, while single views seem fine enough). It does not work below IE8.
If you need IE8 support, I think it would be a matter of adding compatible CSS (for example, the red title background doesn’t show up, because IE8 doesn’t support rgba colors, so you could add a solid background color just for IE8). You can do this in a child theme or using Jetpack’s Custom CSS.
Thanks for supporting theme and plugin authors! Mel & I don’t take donations, but if you want to give back to the WordPress project by making a donation to the WordPress Foundation, that would be great ??
Forum: Themes and Templates
In reply to: [Museum] Autosize of featured images of articlesOh, I see. You can change the height of the first post’s image area with this CSS (either in a child theme or via Jetpack’s CSS editor:
body.blog .hentry:first-of-type:before, body.archive .hentry:first-of-type:before { padding-top: 56%; }
and you can tweak the height yourself by changing the “56%” – but that value worked best for me with your example image.
Forum: Themes and Templates
In reply to: [Museum] Autosize of featured images of articlesWhat version of Museum are you using? In version 0.1.5, we switched up the image sizes so landscape photos (and vertical images) were not distorted into squares. Can you provide a screenshot of the issue you’re having?
Forum: Plugins
In reply to: [Admin Color Schemes] Any plans for *.less version?I answered this on the github issue saas created, if anyone else is looking for LESS.
Forum: Themes and Templates
In reply to: [Flounder] Filter/Option for setting post date formatsVersion 0.2.2 of Flounder (just released) respects the date format set in general settings.
Thanks for your feedback!
Forum: Themes and Templates
In reply to: [Flounder] flounder-fontsI double checked, and the code snippet provided worked for me. The
mytheme_dequeue_fonts
function is enqueued at priority 11, which means it will run afterflounder_fonts
. So,flounder_fonts
runs, and enqueues the font from google, and then your function,mytheme_dequeue_fonts
, will run, dequeuing it.Forum: Plugins
In reply to: [Meetup Widgets] Single event widget – styling issues & date formatYeah, this plugin isn’t super-active, but I spent some time last night working on an updated version (2.2.0), so:
- Now if there is no date set, no date displays. There is a filter for text to show if there is no time (
vsm_no_date_text
). - I’ve added “
event-*
” classes to each item, so you can target them without jumping through CSS hoops. - You can change the RSVP text (and any HTML, etc) by copying the
meetup-single.php
template down into your theme. There is no filter or UI setting for this, though if there’s interest I could add a filter in the next version.
Forum: Plugins
In reply to: [Meetup Widgets] [Plugin: Meetup Widgets] Did Not Do Anything4795209, try walking through the steps here, under Activate Widgets. If you don’t have the widgets item in your appearance menu, you either don’t have permission to add widgets, or your theme does not support them. If your theme does not support widgets, then you can’t use this plugin (sorry).
If you’re not sure where your widgets will display, try adding a text widget & looking for it on your site.
I’ve added caching in as v2.0.2, so I’m marking this as resolved.
Ah, you’re totally right. I’ve been meaning to implement caching for a while now & hadn’t had the time, but if people are running into issues because of it then I’ll make it more of a priority.
Sorry this took so long to get to. I wasn’t displaying minutes on the list view, so if your meetup was at 7:30, it was showing up as 7. I added minutes to the date format in this latest version of the plugin (2.0.1).
If you’re still having any issues, let me know.
Hm, unfortunately I can’t replicate the issue you’re having, even using the same group. What kind of server are you on? Would you be comfortable with editing the plugin files to try to debug this issue?
I don’t see where you’re getting that ID from, but if the group you’re using is “BusinessBuildingAcademy”, you can just use that as the group ID – the widget field understands both group ID and URL name.
Can you tell me the ID of the group you’re trying to list? I’ve tried a few different cases but can’t replicate that error.
I think that you haven’t filled in an event or group ID, and so the plugin doesn’t know what to do.
When you add the single event widget to a widget-area, you can enter the title & event ID – title is optional, but you need the event ID so it knows what to display.
When you add the event listing widget, you can enter title & group ID. Again, title is optional, but the group ID is required.
- Now if there is no date set, no date displays. There is a filter for text to show if there is no time (