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/payments/single
File: heading-navigation.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Single Payment page - Heading navigation.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.8.2
[4] Fix | Delete
*
[5] Fix | Delete
* @var int $count Count of all payments.
[6] Fix | Delete
* @var int $prev_count Count of previous payments.
[7] Fix | Delete
* @var string $prev_url Previous payment URL.
[8] Fix | Delete
* @var string $prev_class Previous payment class.
[9] Fix | Delete
* @var string $next_url Next payment URL.
[10] Fix | Delete
* @var string $next_class Next payment class.
[11] Fix | Delete
* @var string $overview_url Payments Overview page URL.
[12] Fix | Delete
*/
[13] Fix | Delete
[14] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[15] Fix | Delete
exit;
[16] Fix | Delete
}
[17] Fix | Delete
[18] Fix | Delete
?>
[19] Fix | Delete
<a href="<?php echo esc_url( $overview_url ); ?>" class="page-title-action wpforms-btn wpforms-btn-orange" data-action="back">
[20] Fix | Delete
<svg viewBox="0 0 16 14" class="page-title-action-icon">
[21] Fix | Delete
<path d="M16 6v2H4l4 4-1 2-7-7 7-7 1 2-4 4h12Z"/>
[22] Fix | Delete
</svg>
[23] Fix | Delete
<span class="page-title-action-text"><?php esc_html_e( 'Back to All Payments', 'wpforms-lite' ); ?></span>
[24] Fix | Delete
</a>
[25] Fix | Delete
[26] Fix | Delete
<div class="wpforms-admin-single-navigation">
[27] Fix | Delete
<div class="wpforms-admin-single-navigation-text">
[28] Fix | Delete
<?php
[29] Fix | Delete
printf( /* translators: %1$d - current number of payment, %2$d - total number of payments. */
[30] Fix | Delete
esc_html__( 'Payment %1$d of %2$d', 'wpforms-lite' ),
[31] Fix | Delete
(int) $prev_count + 1,
[32] Fix | Delete
(int) $count
[33] Fix | Delete
);
[34] Fix | Delete
?>
[35] Fix | Delete
</div>
[36] Fix | Delete
<div class="wpforms-admin-single-navigation-buttons">
[37] Fix | Delete
<a
[38] Fix | Delete
href="<?php echo esc_url( $prev_url ); ?>"
[39] Fix | Delete
title="<?php esc_attr_e( 'Previous payment', 'wpforms-lite' ); ?>"
[40] Fix | Delete
id="wpforms-admin-single-navigation-prev-link"
[41] Fix | Delete
class="wpforms-btn-grey <?php echo sanitize_html_class( $prev_class ); ?>">
[42] Fix | Delete
<span class="dashicons dashicons-arrow-left-alt2"></span>
[43] Fix | Delete
</a>
[44] Fix | Delete
<span
[45] Fix | Delete
class="wpforms-admin-single-navigation-current"
[46] Fix | Delete
title="<?php esc_attr_e( 'Current payment', 'wpforms-lite' ); ?>">
[47] Fix | Delete
<?php echo (int) $prev_count + 1; ?>
[48] Fix | Delete
</span>
[49] Fix | Delete
<a
[50] Fix | Delete
href="<?php echo esc_url( $next_url ); ?>"
[51] Fix | Delete
title="<?php esc_attr_e( 'Next payment', 'wpforms-lite' ); ?>"
[52] Fix | Delete
id="wpforms-admin-single-navigation-next-link"
[53] Fix | Delete
class="wpforms-btn-grey <?php echo sanitize_html_class( $next_class ); ?>">
[54] Fix | Delete
<span class="dashicons dashicons-arrow-right-alt2"></span>
[55] Fix | Delete
</a>
[56] Fix | Delete
</div>
[57] Fix | Delete
</div>
[58] Fix | Delete
[59] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function