Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Last active May 11, 2016 16:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshfeck/d096c690791098ae7f9e to your computer and use it in GitHub Desktop.
Save joshfeck/d096c690791098ae7f9e to your computer and use it in GitHub Desktop.
Event Espresso 4. Custom report that includes the Event Name, Event Start Date, Ticket End Date. Paste into phpMyadmin's SQL tab. If your WP database has a unique prefix (instead of wp_) you'll need to replace your prefix for each wp_
SELECT `wp_posts`.`post_title`, `wp_esp_datetime`.`DTT_EVT_start`, `wp_esp_ticket`.`TKT_end_date`
FROM wp_posts
LEFT JOIN `wp_esp_event_meta` ON `wp_posts`.`ID` = `wp_esp_event_meta`.`EVT_ID`
LEFT JOIN `wp_esp_datetime` ON `wp_posts`.`ID` = `wp_esp_datetime`.`EVT_ID`
LEFT JOIN `wp_esp_ticket` ON `wp_esp_event_meta`.`EVTM_ID` = `wp_esp_ticket`.`TKT_ID`
WHERE `wp_posts`.`post_type` LIKE 'espresso_events'
ORDER BY `wp_esp_datetime`.`DTT_EVT_start` DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment