Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/wpforms-.../template.../fields/number-s...
File: builder-option-min-max.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Minimum and maximum input template for Number field.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.5.7
[4] Fix | Delete
*
[5] Fix | Delete
* @var int $field_id Field ID.
[6] Fix | Delete
* @var string $input_min Minimum input.
[7] Fix | Delete
* @var string $input_max Maximum input.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[11] Fix | Delete
exit;
[12] Fix | Delete
}
[13] Fix | Delete
[14] Fix | Delete
?>
[15] Fix | Delete
[16] Fix | Delete
<div class="wpforms-input-row">
[17] Fix | Delete
<div class="minimum">
[18] Fix | Delete
<?php echo $input_min; // phpcs:ignore ?>
[19] Fix | Delete
<label for="wpforms-field-option-<?php echo (int) $field_id; ?>-min" class="sub-label"><?php esc_html_e( 'Minimum', 'wpforms-lite' ); ?></label>
[20] Fix | Delete
</div>
[21] Fix | Delete
<div class="maximum">
[22] Fix | Delete
<?php echo $input_max; // phpcs:ignore ?>
[23] Fix | Delete
<label for="wpforms-field-option-<?php echo (int) $field_id; ?>-max" class="sub-label"><?php esc_html_e( 'Maximum', 'wpforms-lite' ); ?></label>
[24] Fix | Delete
</div>
[25] Fix | Delete
</div>
[26] Fix | Delete
[27] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function