Remove Sorting option By "Title"

How to remove sorting option by title please !

Hi,

Please use this PHP snippet How to add custom code snippets - HivePress Help Center :


add_filter(
	'hivepress/v1/forms/listing_sort',
	function( $form ) {
		unset( $form['fields']['_sort']['options']['title'] );

		return $form;
	}
);

​I hope this is helpful to you.

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