Hello,
I have the opposite problem now. Category will not display in my search form without the Styling Options (Advanced) (Beta) and click NO. I have added code to my Template files to show Tags as detailed below.
Event Page: https://www.workforcesoftware.com/newsroom/events/
events-list.php
$args = apply_filters('em_content_events_args', $args);
if ( !empty($_REQUEST['search-tag']) ){
$args['tag'] = $_REQUEST['search-tag'];
}
$args = apply_filters('em_content_events_args', $args);
if( get_option('dbem_css_evlist') ) echo "<div class='css-events-list'>";
echo EM_Events::output( $args );
if( get_option('dbem_css_evlist') ) echo "</div>";
events-search.php
…
//categories
if( !empty($args['search_categories']) ) em_locate_template('templates/search/categories.php',true,array('args'=>$args));
//tags
$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 Regions', 'class'=>'em-events-search-tag'));
Can you help me get the Categories back in the Search?
Thank you for a great plugin and support it is greatly appreciated:)