Join our new community forum for support & discussion

Join Now

Home Support General HivePress Hide categories from left widget

Hide categories from left widget

  • Author
    Posts
  • vdrive6

    How to hide categories from left widget (under search bar)

    ihor developer

    You can try adding this code snippet to the child theme functions.php file:

    add_filter(
    	'hivepress/v1/forms/listing_filter',
    	function( $form ) {
    		unset( $form['fields']['_category'] );
    
    		return $form;
    	},
    	10000
    );
Viewing 2 posts - 1 through 2 (of 2 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.