Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created February 20, 2023 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/4ad7c43c3ec254597d9aab7a87822681 to your computer and use it in GitHub Desktop.
Save hivepress/4ad7c43c3ec254597d9aab7a87822681 to your computer and use it in GitHub Desktop.
Hide the location section from the listing pages #hivepress #geolocation #rentalhive
<?php
add_filter(
'hivepress/v1/templates/listing_view_page',
function( $template ) {
hivepress()->template->fetch_block( $template, 'location_container' );
return $template;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment