How do I go about removing ‘Date’ as a sort by option on the listings page?
Please try this PHP snippet
add_filter(
'hivepress/v1/forms/listing_sort',
function( $form_args, $form ) {
unset($form_args['fields']['_sort']['options']['']);
return $form_args;
},
1000,
2
);
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
This worked perfectly, thank you!
Just one more adjustment -There is still a filter for date. Now that date has been removed from the listing, is there anyway to remove the Sort By date?
Thank you for your time.
Hi,
Please use a PHP snippet from this topic. You can add custom code using this doc: How to add custom code snippets - HivePress Help Center