Problems with Search Functionality in Admin
-
The “Show all Event Categories” sets the search in the WP Query to search for taxonomy term “0.” I was able to resolve this by changing line 236 of tribe-event-query.class.php:
if ( ! in_array( $query->get( TribeEvents::TAXONOMY ), array( ”, ‘-1’ ) ) ) {to:
if ( ! in_array( $query->get( TribeEvents::TAXONOMY ), array( ”, ‘0’, ‘-1’ ) ) ) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Problems with Search Functionality in Admin’ is closed to new replies.