Title: Mike Auteri's Replies | WordPress.org

---

# Mike Auteri

  [  ](https://wordpress.org/support/users/mauteri/)

 *   [Profile](https://wordpress.org/support/users/mauteri/)
 *   [Topics Started](https://wordpress.org/support/users/mauteri/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mauteri/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mauteri/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mauteri/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mauteri/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mauteri/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 235 total)

1 [2](https://wordpress.org/support/users/mauteri/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mauteri/replies/page/3/?output_format=md)…
[14](https://wordpress.org/support/users/mauteri/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/mauteri/replies/page/15/?output_format=md)
[16](https://wordpress.org/support/users/mauteri/replies/page/16/?output_format=md)
[→](https://wordpress.org/support/users/mauteri/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] Editing Date/Time in Event Settings Metabox Does Not Work](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [5 months ago](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/#post-18823450)
 * Hi [@seandbf](https://wordpress.org/support/users/seandbf/), thanks for all your
   help getting to the bottom of this issue. We’ve just released 0.33.3 that fixes
   this. Let us know if you run into anything else. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] Editing Date/Time in Event Settings Metabox Does Not Work](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [5 months, 3 weeks ago](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/#post-18796508)
 * [@seandbf](https://wordpress.org/support/users/seandbf/) excellent, thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] Editing Date/Time in Event Settings Metabox Does Not Work](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [5 months, 4 weeks ago](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/#post-18794280)
 * Hi [@seandbf](https://wordpress.org/support/users/seandbf/), I wanted to check-
   in with you on this issue again and if you are able to provide any more information
   to help us with a fix. We’ve been having trouble reproducing it. Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] Editing Date/Time in Event Settings Metabox Does Not Work](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [6 months ago](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/#post-18787067)
 * Also, [@seandbf](https://wordpress.org/support/users/seandbf/) if you see any
   related JavaScript errors in the console when you try to set the date/time please
   let us know. That could help figure out what is going on. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] Editing Date/Time in Event Settings Metabox Does Not Work](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [6 months ago](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/#post-18786015)
 * No problem, [@seandbf](https://wordpress.org/support/users/seandbf/)! Yes, so
   let me explain the table and the meta a bit. Both are managed/updated in [save_datetimes](https://github.com/GatherPress/gatherpress/blob/develop/includes/core/classes/class-event.php#L834)
   method in the Event class. Reason for this is that the meta allows us to naturally
   reveal the datetime information in the REST API or for displaying on an event.
   We also have a custom table `wp_gatherpress_events` with this data that joins
   on the post table for performant queries as meta table is typically not indexed
   and effects performance when you query them like this. You could be experiencing
   a weird bug where these values may not be in sync for some reason, and you’re
   seeing different values (especially if you manipulated the data directly).
 * Few things to help with the debugging: If you create a new event do you see the
   same issue? In the event that you are having problems with do you see different
   values in the meta and custom table for the datetimes?
 * A little history on this, we introduced the meta data values a couple versions
   ago as we only had the custom table at the start of the project for the query
   performance gain as well as displaying. It was pointed out that due to this architecture,
   that the datetimes were not available in the standard WordPress REST API. To 
   fix this we went the meta data route, and that in turn managed the custom table.
 * Flow looks like this:
 *     ```wp-block-code
         Editor Block      ↓ saves  gatherpress_datetime meta (JSON)      ↓ triggers  wp_after_insert_post hook      ↓ calls  Event_Setup::set_datetimes()      ↓ calls  Event::save_datetimes()      ↓ writes to  ├─> Custom Table (gatherpress_events) - for JOINs  └─> Individual Meta Fields - for single event reads
       ```
   
 * Hope this helps either fix the issue or provide more information why it might
   not be working in the context of your site. If you’d like to join our Slack for
   some more hand’s on debugging help, you can join here [https://join.slack.com/t/gatherpress/shared_invite/zt-3nrhdszeo-yTDpkRLtC4lQWwHEPgxrFA](https://join.slack.com/t/gatherpress/shared_invite/zt-3nrhdszeo-yTDpkRLtC4lQWwHEPgxrFA)
   and just message me: mauteri
 * Lastly, we realized we were still using the custom table in a context where it
   didn’t make sense and have recently updated it for 0.34.0. Here’s the PR for 
   that. Again, this is going into 0.34.0: [https://github.com/GatherPress/gatherpress/pull/1335](https://github.com/GatherPress/gatherpress/pull/1335)
 * Thx!
   -Mike
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] Editing Date/Time in Event Settings Metabox Does Not Work](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [6 months ago](https://wordpress.org/support/topic/editing-date-time-in-event-settings-metabox-does-not-work/#post-18785892)
 * Hi seandbf, thanks for reporting! You can find the latest GatherPress Alpha release
   here: [https://github.com/GatherPress/gatherpress-alpha/releases](https://github.com/GatherPress/gatherpress-alpha/releases)
   for 0.33.0, direct download link is here: [https://github.com/GatherPress/gatherpress-alpha/releases/download/0.33.0/gatherpress-alpha.zip](https://github.com/GatherPress/gatherpress-alpha/releases/download/0.33.0/gatherpress-alpha.zip).
   Please give that a try as there was quite a few changes from 0.32 to 0.33 that
   the plugin fixes. If the issue persists, please let us know so we can investigate.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] GatherPress and GatherPress Alpha must be the same version.](https://wordpress.org/support/topic/gatherpress-and-gatherpress-alpha-must-be-the-same-version/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [10 months, 2 weeks ago](https://wordpress.org/support/topic/gatherpress-and-gatherpress-alpha-must-be-the-same-version/#post-18626523)
 * You can find all the releases here going forward: [https://github.com/GatherPress/gatherpress-alpha/releases](https://github.com/GatherPress/gatherpress-alpha/releases)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] GatherPress and GatherPress Alpha must be the same version.](https://wordpress.org/support/topic/gatherpress-and-gatherpress-alpha-must-be-the-same-version/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [10 months, 2 weeks ago](https://wordpress.org/support/topic/gatherpress-and-gatherpress-alpha-must-be-the-same-version/#post-18626519)
 * Hi, yes you’ll need to download this version that can be found here [https://github.com/GatherPress/gatherpress-alpha/releases/download/0.32.3/gatherpress-alpha.zip](https://github.com/GatherPress/gatherpress-alpha/releases/download/0.32.3/gatherpress-alpha.zip)
   which lines up with the version of GatherPress you are using.
 * -Mike
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] GatherPress has Critical Error when I access WPForms Payment Settings](https://wordpress.org/support/topic/gatherpress-has-critical-error-when-i-access-wpforms-payment-settings/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [1 year ago](https://wordpress.org/support/topic/gatherpress-has-critical-error-when-i-access-wpforms-payment-settings/#post-18548031)
 * We have just released 0.32.3 that has a check to prevent the error you were seeing.
   Let us know if there are any other issues you come upon. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] GatherPress has Critical Error when I access WPForms Payment Settings](https://wordpress.org/support/topic/gatherpress-has-critical-error-when-i-access-wpforms-payment-settings/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [1 year ago](https://wordpress.org/support/topic/gatherpress-has-critical-error-when-i-access-wpforms-payment-settings/#post-18546848)
 * I have a pull request ready to go. Planning to get it out this week for you. 
   Thanks for reporting the issue!
 * [https://github.com/GatherPress/gatherpress/pull/1117](https://github.com/GatherPress/gatherpress/pull/1117)
    -  This reply was modified 1 year ago by [Mike Auteri](https://wordpress.org/support/users/mauteri/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] GatherPress has Critical Error when I access WPForms Payment Settings](https://wordpress.org/support/topic/gatherpress-has-critical-error-when-i-access-wpforms-payment-settings/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [1 year ago](https://wordpress.org/support/topic/gatherpress-has-critical-error-when-i-access-wpforms-payment-settings/#post-18546427)
 * Thanks, we’ll take a look.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] German translation suggested](https://wordpress.org/support/topic/german-translation-suggested/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/german-translation-suggested/#post-18447448)
 * Hi, Carsten hasn’t been as involved with the project recently, but I will pass
   this message to others to take a look at. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] How to see event attendees?](https://wordpress.org/support/topic/how-to-see-event-attendees/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/how-to-see-event-attendees/#post-18428115)
 * I put in this issue for the RSVP issue you brought up. [https://github.com/GatherPress/gatherpress/issues/1063](https://github.com/GatherPress/gatherpress/issues/1063)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GatherPress] How to see event attendees?](https://wordpress.org/support/topic/how-to-see-event-attendees/)
 *  Plugin Contributor [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/how-to-see-event-attendees/#post-18428108)
 * Hi Matteo,
 * Thanks for checking out the project!
 * Attendees list can currently be seen in the RSVP Response block, and when selecting
   the block and clicking “Edit,” you can add/remove attendees to the event.
 * To message attendees you can click the “Compose Message” button on a published
   event. That allows you to message attendees in bulk, but not individually.
 * There are still features missing as we are still in an alpha version of the plugin.
   Being able to manage attendees without the block is a feature we still need to
   work on. If there are other features or issues you are experiencing, just let
   us know so we can review the work and prioritize the task. Thanks!
 * -Mike
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Zero Spam for WordPress] zero-spam-settings took down site due to autoloading](https://wordpress.org/support/topic/zero-spam-settings-took-down-site-due-to-autoloading/)
 *  Thread Starter [Mike Auteri](https://wordpress.org/support/users/mauteri/)
 * (@mauteri)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/zero-spam-settings-took-down-site-due-to-autoloading/#post-17504499)
 * LENGTH(option_value) | option_name
   2054992 | zero-spam-settings

Viewing 15 replies - 1 through 15 (of 235 total)

1 [2](https://wordpress.org/support/users/mauteri/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mauteri/replies/page/3/?output_format=md)…
[14](https://wordpress.org/support/users/mauteri/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/mauteri/replies/page/15/?output_format=md)
[16](https://wordpress.org/support/users/mauteri/replies/page/16/?output_format=md)
[→](https://wordpress.org/support/users/mauteri/replies/page/2/?output_format=md)