Try this…
In file events-search.php
About line #17.. after
<div class="em-search-main">
Put the code… (will appear above most items in the search box).
<?php do_action('em_template_events_search_form_header'); //hook in here to add extra fields, text etc. ?>
<?php
$selected = !empty($_REQUEST['search-tag']) ? $_REQUEST['search-tag'] : 0;
wp_dropdown_categories(array( 'hide_empty' => 0, 'name' => 'search-tag', 'hierarchical' => true, 'taxonomy' => EM_TAXONOMY_TAG, 'selected' => $selected, 'show_option_none' => 'All Tags', 'class'=>'em-events-search-tag', 'orderby' =>'name'));
?>
<br />
Then in events-list.php
About line #13…
After…
if( get_option('dbem_css_evlist') ) echo "<div class='css-events-list'>";
Put the code…
if ( $_REQUEST['search-tag'] != '-1' ){
$args['tag'] = $_REQUEST['search-tag'];
}
ALWAYS BACK UP YOUR FILES AND DATABASES.. and know how to FTP to your website
The code worked for me ! The only thing is the,
search “date” must be, before what you are looking for.