Duplicate Events in Database
-
Thanks for the great plugin! We have begun implementing this at our church and have encountered an issue with duplicate event records in the database. After doing a sync, I’ll inspect the records in the database and find several events that are duplicated. For example, looking at “Revelation Fitness” events using this SQL in MyPHP …
SELECT ID, post_content, post_title, post_status, post_modified, meta_key, meta_value FROM wp_posts, wp_postmeta
WHERE wp_posts.post_title = ‘Revelation Fitness’
AND wp_postmeta.post_id = wp_posts.ID
AND wp_postmeta.meta_key = ‘date’
ORDER BY meta_value… We find 30 records, each with a unique ID, but with several of them coming as duplicate pairs. Have you seen this behavior before? I don’t see anyone else reporting this issue.
We are using:
plugin version 1.0.4
WP version 4.9.5thanks,
Matt-
- The topic ‘Duplicate Events in Database’ is closed to new replies.