Hide Sort by section for vendors

Also this code don´t work for me even for hide the section title. (I need to hide de
whole section)

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

		return $form;
	},
  1000
);

Try this on additional css:

.hp-form--vendor-sort {display:none!important}
2 Likes

Thanks for sharing!

2 Likes

To you. Works perfect

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