Hi there thank you very much. I tried the snippet you sent and all it did was print the code out across the top of every page. List the entire snippet code appears as a line across the top of page and does not add functionality. Did I do something wrong? This is what I added:
add_filter(‘widget_display_callback’, ‘increase_event_widget_limit’, 10, 2);
/**
* Test if the current widget is an Advanced List Widget and fix the event limit if it is.
*/
function increase_event_widget_limit(array $instance, $widget) {
if (is_a($widget, ‘Tribe__Events__Pro__Advanced_List_Widget’))
$instance[‘limit’] = 30;
return $instance;
}