David Kryzaniak
Forum Replies Created
-
Forum: Plugins
In reply to: [SVG Support] Version 2.5.2 breaks WP-CLIPHP: 7.4.33
WP: 6.1.1 (multisite)
SVG Support: 2.5.4Same issue with cli.
Notice: Trying to access array offset on value of type null in /home/wildone2/public_html/wp-content/plugins/svg-support/functions/mime-types.php on line 22
.- This reply was modified 1 year, 11 months ago by David Kryzaniak.
For me, the issue has something to do with the #_EVENTLOCATION tag. I went to Events > Settings, selected the Formatting tab, and removed “#_EVENTLOCATION” from everywhere I could find it. That fixed it.
I’m noticing the same issue.
I’m having the same problem. The source of the issue appears to be that
$calendar['month_start']
gets converted to the local timezone. If I dump that variable, I get “1609459200” (Friday, January 1, 2021 12:00:01 AM GMT), which is correct. When that gets converted to my local timezone, the value becomes “Thursday, December 31, 2020 6:00:00 PM GMT-06:00” which makes everything appear to be a month off.To fix this, on line 16 of events-manager/templates/templates/calendar-full.php, the second parameter just needs to be set to GMT. Like this:
$EM_DateTime = new EM_DateTime($calendar['month_start'],'GMT');
I hope this helps!
We’re also experiencing the same issue. Several thousand emails to qq.com addresses in the last few days.
Forum: Plugins
In reply to: [BracketPress] Leaderboard shortcode options?Sadly, there isn’t an option to hide columns. Here are the available options for the shortcode (there are a few others, but they are not used):
[bracketpress_all_brackets orderby="score" posts_per_page="10"]
orderby can be set to “default” or “score”. posts_per_page can be any positive integer (defaults to 10)
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Remove bulletsSorry for the delay. Weird? All the CSS classes are missing from the plugin? Did you modify the plugin at all? Are you sure you’re using “Recent Posts Widget Extended”?
Since it sounds like you need to edit the theme directly, I recommend using a child theme. Here’s the CSS you’ll need to remove the arrows:
#sideright ul li.widget-container.widget_recent_entries ul li { background-image: none; padding: 5px 0px 5px 0px; }
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Remove bullets@junkrar, try this instead (without seeing your site, it’s hard to tell what’s going on)
body li.rpwe_widget {list-style:none !important;} body .rpwe-block li {list-style:none !important;}