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

EventOn Search Results – Current and Future Events

Home Forums Product Support Forums Ajax Search Pro for WordPress Support EventOn Search Results – Current and Future Events

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #42415
    dstevens2322dstevens2322
    Participant

    Hello,
    I wrote in last week and got a great response about limiting the search results to only future events. The plugin I am using for events is EventOn. You made me a custom code to place in the functions.php file, but I have one request. The search does not include anything from the current date. Can you help me add the option to show search results for events that show the current date and future dates?

    Thank you again,
    Danielle

    #42428
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Sure! I think the timestamp needs to be adjusted to the beginning of the current day (from 00:00 AM), so maybe changing the code to this:

    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'     => 'evcal_srow',
    		'value'   => strtotime("today", time()),
    		'operator' => '>=',
    		'allow_missing' => false
    	);
    	return $args;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.