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.../builder/revision...
File: notice-limited.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* "Revisions are limited" notice in the Form Builder Revisions panel.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.7.3
[4] Fix | Delete
*
[5] Fix | Delete
* @var int $revisions_to_keep How many revisions are kept.
[6] Fix | Delete
*/
[7] Fix | Delete
[8] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[9] Fix | Delete
exit;
[10] Fix | Delete
}
[11] Fix | Delete
[12] Fix | Delete
$url = wpforms_utm_link(
[13] Fix | Delete
'https://wpforms.com/docs/how-to-use-form-revisions-in-wpforms/#enable-post-revisions',
[14] Fix | Delete
'Builder Revisions',
[15] Fix | Delete
'Revisions Limited Notice'
[16] Fix | Delete
);
[17] Fix | Delete
?>
[18] Fix | Delete
[19] Fix | Delete
<div class='wpforms-revisions-notice wpforms-revisions-notice-warning'>
[20] Fix | Delete
<h2><?php esc_html_e( 'Form Revisions Are Limited', 'wpforms-lite' ); ?></h2>
[21] Fix | Delete
<p>
[22] Fix | Delete
<?php
[23] Fix | Delete
printf( /* translators: %d - maximum number of revisions to keep. */
[24] Fix | Delete
esc_html__( 'Revisions are enabled, but they’re limited to %d. You can increase this by making a simple change to your WordPress configuration.', 'wpforms-lite' ),
[25] Fix | Delete
absint( $revisions_to_keep )
[26] Fix | Delete
);
[27] Fix | Delete
?>
[28] Fix | Delete
</p>
[29] Fix | Delete
[30] Fix | Delete
<a href="<?php echo esc_url( $url ); ?>" target="_blank" rel="noopener noreferrer" class='button button-primary button-large'>
[31] Fix | Delete
<?php esc_html_e( 'Learn How', 'wpforms-lite' ); ?>
[32] Fix | Delete
</a>
[33] Fix | Delete
</div>
[34] Fix | Delete
[35] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function