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/wp-conte.../plugins/wpforms-.../template.../fields/number-s...
File: frontend.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Number slider field frontend template.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.5.7
[4] Fix | Delete
*
[5] Fix | Delete
* @var array $atts Additional HTML attributes.
[6] Fix | Delete
* @var array $class HTML classes.
[7] Fix | Delete
* @var array $datas Data attributes.
[8] Fix | Delete
* @var float $max Upper range limit.
[9] Fix | Delete
* @var float $min Lower range limit.
[10] Fix | Delete
* @var float $step Allowed step.
[11] Fix | Delete
* @var string $id Element ID.
[12] Fix | Delete
* @var string $required Is field required or not.
[13] Fix | Delete
* @var string $value_display Value output.
[14] Fix | Delete
* @var string $value_hint Value hint output.
[15] Fix | Delete
*/
[16] Fix | Delete
[17] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[18] Fix | Delete
exit;
[19] Fix | Delete
}
[20] Fix | Delete
[21] Fix | Delete
?>
[22] Fix | Delete
[23] Fix | Delete
<input
[24] Fix | Delete
type="range"
[25] Fix | Delete
<?php wpforms_html_attributes( $id, $class, $datas, $atts, true ); ?>
[26] Fix | Delete
<?php echo ! empty( $required ) ? 'required' : ''; ?>
[27] Fix | Delete
min="<?php echo esc_attr( $min ); ?>"
[28] Fix | Delete
max="<?php echo esc_attr( $max ); ?>"
[29] Fix | Delete
step="<?php echo esc_attr( $step ); ?>">
[30] Fix | Delete
[31] Fix | Delete
<div class="wpforms-field-number-slider-hint"
[32] Fix | Delete
data-hint="<?php echo esc_attr( wp_kses_post( $value_display ) ); ?>">
[33] Fix | Delete
<?php echo wp_kses_post( $value_hint ); ?>
[34] Fix | Delete
</div>
[35] Fix | Delete
[36] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function