Created
June 16, 2022 23:01
-
-
Save hivepress/d689053e5ba795e086c38f161bab1466 to your computer and use it in GitHub Desktop.
Hide the search form on the default listing categories page #hivepress #listings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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