Setting the Sales Price

Please try this PHP snippet

add_filter(
	'hivepress/v1/models/listing/attributes',
	function( $attributes ) {
		if ( isset( $attributes['price'] ) ) {
			$attributes['price']['edit_field']['min_value'] = 1;
			$attributes['price']['edit_field']['max_value'] = 100000;
		}

		return $attributes;
	},
	1000
);