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/advanced.../admin/views/conditio...
File: condition-number.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Template to select number-based conditions.
[2] Fix | Delete
*
[3] Fix | Delete
* @var string $name form name attribute.
[4] Fix | Delete
* @var string $operator operator.
[5] Fix | Delete
* @var array $type_options array with information. We get the description of the condition from here.
[6] Fix | Delete
*/
[7] Fix | Delete
?>
[8] Fix | Delete
<input type="hidden" name="<?php echo esc_attr( $name ); ?>[type]" value="<?php echo esc_attr( $options['type'] ); ?>"/>
[9] Fix | Delete
<select name="<?php echo esc_attr( $name ); ?>[operator]">
[10] Fix | Delete
<option
[11] Fix | Delete
value="is_equal" <?php selected( 'is_equal', $operator ); ?>><?php esc_html_e( 'equal', 'advanced-ads' ); ?></option>
[12] Fix | Delete
<option
[13] Fix | Delete
value="is_higher" <?php selected( 'is_higher', $operator ); ?>><?php esc_html_e( 'equal or higher', 'advanced-ads' ); ?></option>
[14] Fix | Delete
<option
[15] Fix | Delete
value="is_lower" <?php selected( 'is_lower', $operator ); ?>><?php esc_html_e( 'equal or lower', 'advanced-ads' ); ?></option>
[16] Fix | Delete
</select><input type="number" name="<?php echo esc_attr( $name ); ?>[value]" value="<?php echo absint( $value ); ?>"/>
[17] Fix | Delete
<p class="description">
[18] Fix | Delete
<?php echo esc_html( $type_options[ $options['type'] ]['description'] ); ?>
[19] Fix | Delete
<?php if ( isset( $type_options[ $options['type'] ]['helplink'] ) ) : ?>
[20] Fix | Delete
<a href="<?php echo esc_url( $type_options[ $options['type'] ]['helplink'] ); ?>" class="advads-manual-link" target="_blank">
[21] Fix | Delete
<?php esc_html_e( 'Manual', 'advanced-ads' ); ?>
[22] Fix | Delete
</a>
[23] Fix | Delete
<?php endif; ?>
[24] Fix | Delete
</p>
[25] Fix | Delete
[26] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function