Skip to content

Instantly share code, notes, and snippets.

@tokopress
Last active May 3, 2016 19:34
Show Gist options
  • Save tokopress/9b2c09d2968ac31f0f2ef2a1829affe3 to your computer and use it in GitHub Desktop.
Save tokopress/9b2c09d2968ac31f0f2ef2a1829affe3 to your computer and use it in GitHub Desktop.
Eventica - Fix WordPress database error Unknown column 'EventStartDate' in 'order clause'
add_filter( 'tribe_query_can_inject_date_field', 'toko_fix_tribe_query_can_inject_date_field' );
function toko_fix_tribe_query_can_inject_date_field( $can ) {
global $wp_query;
if ( isset($wp_query->query['eventDisplay']) && $wp_query->query['eventDisplay'] == 'month' ) {
$can = false;
}
return $can;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment