Viewing 1 replies (of 1 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    Hi,

    You can try this custom snippet for now;

    
    function SearchFilter($query) {
        if ($query->is_search) {
            $query->set('meta_key','_event_start_date');
            $query->set('meta_query', array(
                          array('key'=>'_event_start_date'),
                          array('key' => '_event_end_date', 'value' => date('Y-m-d'), 'compare' => '>=', 'type' => 'DATE')
                        ));
        }
        return $query;
    }
    add_filter('pre_get_posts','SearchFilter');
    

    As for where to paste custom snippet: https://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/

Viewing 1 replies (of 1 total)
  • The topic ‘Un-publish past events’ is closed to new replies.