Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created June 16, 2022 23:01
Show Gist options
  • Select an option

  • Save hivepress/d689053e5ba795e086c38f161bab1466 to your computer and use it in GitHub Desktop.

Select an option

Save hivepress/d689053e5ba795e086c38f161bab1466 to your computer and use it in GitHub Desktop.
Hide the search form on the default listing categories page #hivepress #listings
<?php
add_filter(
'hivepress/v1/templates/listing_categories_view_page',
function( $template ) {
return hivepress()->helper->merge_trees(
$template,
[
'blocks' => [
'listing_search_form' => [
'type' => 'content',
],
],
]
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment