Last active
May 3, 2016 19:34
-
-
Save tokopress/9b2c09d2968ac31f0f2ef2a1829affe3 to your computer and use it in GitHub Desktop.
Eventica - Fix WordPress database error Unknown column 'EventStartDate' in 'order clause'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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