How can you mark a listing as sold?

Hi,
Please try this PHP snippet:

add_filter(
 'hivepress/v1/fields/number/display_value',
 function( $value, $field ) {
  if ( $field->get_name() === 'price' ) {
   $listing = $field->get_context( 'listing' );

   if ( $listing && $listing->is_sold() ) {
    $value = null;
   }
  }

  return $value;
 },
 1000,
 2
);