Please try this PHP snippet. Please change [1,2,3]
with categories id where you want to show Open now checkbox
add_filter(
'hivepress/v1/forms/listing_filter',
function( $form_args, $form ) {
$listing_category = hivepress()->request->get_context('listing_category');
if($listing_category && !in_array($listing_category->get_id(), [1,2,3])){
unset($form_args['fields']['_open']);
}
return $form_args;
},
1000,
2
);
add_filter(
'hivepress/v1/forms/listing_sort',
function( $form_args, $form ) {
$listing_category = hivepress()->request->get_context('listing_category');
if($listing_category && !in_array($listing_category->get_id(), [1,2,3])){
unset($form_args['fields']['_open']);
}
return $form_args;
},
1000,
2
);