Skip to content

Instantly share code, notes, and snippets.

@hivepress
Last active August 21, 2025 13:16
Show Gist options
  • Select an option

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

Select an option

Save hivepress/92f55ad72c4770e13ecb7b9942d16b04 to your computer and use it in GitHub Desktop.
Hide the Buy Now button until the listing is verified or claimed #listings #marketplace #claim-listings
<?php
add_filter(
'hivepress/v1/templates/listing_view_page/blocks',
function ( $blocks, $template ) {
$listing = $template->get_context( 'listing' );
if ( $listing && ! $listing->is_verified() ) {
hivepress()->template->fetch_block( $blocks, 'listing_buy_form' );
}
return $blocks;
},
1000,
2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment