Filter Result: the "Open Now" to be on top

Is there a snippet to move the “Open now” to the top of the filter?

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/listing_filter',
	function($form){
		if(isset($form['fields']['_open'])){
			$form['fields']['_open']['_order'] = 1;
		}
		
		return $form;
	},
	1000
);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.