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.../admin/empty-st.../payments
File: get-started.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Get Started HTML template.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.8.2
[4] Fix | Delete
*
[5] Fix | Delete
* @var string $message An abort message to display.
[6] Fix | Delete
* @var string $version Determine whether is pro or lite version.
[7] Fix | Delete
* @var string $cta_url URL for the "Get Started" CTA button.
[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
$allowed_html = [
[15] Fix | Delete
'a' => [
[16] Fix | Delete
'href' => [],
[17] Fix | Delete
'rel' => [],
[18] Fix | Delete
'target' => [],
[19] Fix | Delete
],
[20] Fix | Delete
'strong' => [],
[21] Fix | Delete
];
[22] Fix | Delete
[23] Fix | Delete
?>
[24] Fix | Delete
<div class="wpforms-admin-empty-state-container wpforms-admin-no-payments">
[25] Fix | Delete
<h2 class="waving-hand-emoji"><?php esc_html_e( 'Hi there!', 'wpforms-lite' ); ?></h2>
[26] Fix | Delete
<h4><?php esc_html_e( 'Ready to start collecting payments from your customers?', 'wpforms-lite' ); ?></h4>
[27] Fix | Delete
<p><?php echo wp_kses( $message, $allowed_html ); ?></p>
[28] Fix | Delete
<img src="<?php echo esc_url( WPFORMS_PLUGIN_URL . "assets/images/empty-states/payments/get-started-$version.svg" ); ?>" alt="">
[29] Fix | Delete
[30] Fix | Delete
<?php if ( wpforms_current_user_can( 'create_forms' ) ) : ?>
[31] Fix | Delete
<a href="<?php echo esc_url( $cta_url ); ?>" class="wpforms-btn wpforms-btn-lg wpforms-btn-orange">
[32] Fix | Delete
<?php esc_html_e( 'Get Started', 'wpforms-lite' ); ?>
[33] Fix | Delete
</a>
[34] Fix | Delete
<?php endif; ?>
[35] Fix | Delete
[36] Fix | Delete
<p class="wpforms-admin-no-forms-footer">
[37] Fix | Delete
<?php
[38] Fix | Delete
printf(
[39] Fix | Delete
wp_kses( /* translators: %s - URL to the comprehensive guide. */
[40] Fix | Delete
__( 'Need some help? Check out our <a href="%s" rel="noopener noreferrer" target="_blank">comprehensive guide.</a>', 'wpforms-lite' ),
[41] Fix | Delete
$allowed_html
[42] Fix | Delete
),
[43] Fix | Delete
esc_url(
[44] Fix | Delete
wpforms_utm_link(
[45] Fix | Delete
'https://wpforms.com/docs/using-stripe-with-wpforms-lite/',
[46] Fix | Delete
'Payments Dashboard',
[47] Fix | Delete
'Splash - Manage Payments Documentation'
[48] Fix | Delete
)
[49] Fix | Delete
)
[50] Fix | Delete
);
[51] Fix | Delete
?>
[52] Fix | Delete
</p>
[53] Fix | Delete
</div>
[54] Fix | Delete
[55] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function