DanDzina
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] March 31st events populating every day in AprilI have the same issue happening on a site I manage:
https://www.cabinetmountainbiblechurch.org/events/2013-04/If a entry is placed on March 31st, it repeats every day in April.
Forum: Plugins
In reply to: [Bad Behavior] [Plugin: Bad Behavior] 2.2.1.1 version update install failureSame for me, line 94 of blacklist.inc.php, missing comma.
Html in general works, up until you have a quoted attribute.
The issue exists for quotes or double quotes anywhere in the description regardless of using it on html though. Every time you update something on the groups, the quotes get doubled up with additional escape characters.Forum: Plugins
In reply to: [Participants Database] [Plugin: Participants Database] SMTP MailThe Participants Database settings has a setting for the from email address. My SMTP host will not allow outgoing mail with a from address different than the one I authenticated with — you might check that they match.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Upcoming Event widget fixWell, the change I made solved my issue — it was more of a fyi.
As I said, I am uncertain to the design style recommended for when loops are called inside of other loops so perhaps the issue should really be handled on the theme side instead.
Thanks for taking the time to look at it thoughForum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Upcoming Event widget fixHere you go:
https://pastebin.com/A7tH8n3bForum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Upcoming Event widget fixIt’s perhaps a issue with the theme — the theme basically has a loop where it queries the contents of several pages. I am not fully up on WordPress yet as far as best practices go..
When it encountered the widget for the upcoming events, the query would be lost. I likely could have added the preservation of $original_query in it’s loop.
On the theme’s page it had a section like this:
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
This look would not complete correctly when one of those pages executed the upcoming events widget, I beleive because it used wp_reset_query().
In place of that, I
1) captured the $wp_query at the top of your function in $original_query
2) commented out wp_reset_query
3) set $wp_query to the value preserved in $original_queryJust to make thing a bit more complicated perhaps, the page its on is calling the upcoming events widget via a shortcode that is generated with the “amr shorcode any widget” plugin. However the amr pluging doesn’t do much to the execution.
You can view the upcomming events in this loop at https://stage.thompsonfallschamber.com on the lower left of the page