Last active
August 21, 2025 13:16
-
-
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
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_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