This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Show only Future Events

#44427
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

Thank you for your kind words!

Surely it is possible, but you may need a few lines of code for it. I am not exactly sure about the plugin you are using for events, but I have constructed a custom code snippet, which should do exactly that if the date format is what I think it is. You will find it below.

Try adding this code via the Code Snippets plugin or to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.

add_filter("asp_query_args", "asp_query_args_apply_date", 10, 2);
function asp_query_args_apply_date($args, $search_id) {
	$args['post_meta_filter'][] = array(
		'key'     => '_event_start_date',
		'value'   => date('Y-m-d'),
		'operator' => '>=',
		'allow_missing' => false
	);
	return $args;
}