Yes, thanks - that fixed it (thanks because I have a lot of views that use that special function!)
I have created a page that has an identical view without the shortcode parameter filter - but it has all the other filters - and it works just fine - so I don't see what could be wrong with the other filters. As soon as I add the Team Color parameter, the view returns NO ITEMS FOUND.
The new page I made is:
hidden link
So all of those other filters work fine as long as the Team Color filter isn't added.
Do you think it has something to do with that code you had commented out that allows the view to process the _event_start_date and _event_end_date filters properly? That code was given to me by somebody at Toolset years ago to help Views interface with the Events Manager plugin with handles date fields differently.
Here is that code:
//allows a specific View to filter the Events Manager START date field properly
add_filter('wpv_filter_custom_field_filter_processed_value', 'format_event_start_date_comparison', 10, 3);
function format_event_start_date_comparison($value, $key, $view_id)
{
if (in_array($view_id, array(15587, 15984, 16005, 16088, 16095, 16367, 16406, 16608, 16610, 16663, 16665, 16669, 16765, 16671, 16678, 16679, 17793, 18300, 18316, 18362, 18300, 18370, 18373, 18377, 18414, 18418, 18621, 18626, 19766, 29544, 29905, 30202, 30210, 30361, 31627, 31631, 31670, 31681, 31682, 33150, 33303, 33304, 39292, 39498, 45847, 45851, 48043, 50156, 51420, 52888, 53199, 53433, 53444, 53445, 53446, 54574, 53199, 56940, 71221, 71232, 73252, 74065, 76063, 80182, 90024, 92608, 100739, 100741, 100821, 100940, 120080)) && $key == '_event_start_date')
{
return date('Y-m-d', $value);
}
return $value;
}
//allows a specific View to filter the Events Manager END date field properly
add_filter('wpv_filter_custom_field_filter_processed_value', 'format_event_end_date_comparison', 10, 3);
function format_event_end_date_comparison($value, $key, $view_id)
{
if (in_array($view_id, array(15587, 15984, 16005, 16088, 16095, 16367, 16406, 16608, 16610, 16663, 16665, 16669, 16765, 16671, 16678, 16679, 17793, 18300, 18316, 18362, 18300, 18370, 18373, 18377, 18414, 18418, 18621, 18626, 19766, 29544, 29905, 30202, 30210, 30361, 31627, 31631, 31670, 31681, 31682, 33150, 33303, 33304, 39292, 39498, 45847, 45851, 48043, 50156, 51420, 52888, 53199, 53433, 53444, 53445, 53446, 54574, 53199, 56940, 71221, 71232, 73252, 74065, 76063, 80182, 90024, 92608, 100739, 100741, 100821, 100940, 120080)) && $key == '_event_end_date')
{
return date('Y-m-d', $value);
}
return $value;
}