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/wp-bulk-.../includes/admin
File: admin-sidebar.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Sidebar for Admin Pages
[2] Fix | Delete
*
[3] Fix | Delete
* @package WP_Bulk_Delete
[4] Fix | Delete
* @subpackage Admin/Pages
[5] Fix | Delete
* @copyright Copyright (c) 2016, Dharmesh Patel
[6] Fix | Delete
* @since 1.1.0
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
// Exit if accessed directly
[10] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) exit;
[11] Fix | Delete
[12] Fix | Delete
[13] Fix | Delete
/**
[14] Fix | Delete
* Render Sidebar for Admin Pages.
[15] Fix | Delete
*
[16] Fix | Delete
* @since 1.1.0
[17] Fix | Delete
* @return void
[18] Fix | Delete
*/
[19] Fix | Delete
function wpbd_admin_sidebar() {
[20] Fix | Delete
if(!wpbd_is_pro()){
[21] Fix | Delete
?>
[22] Fix | Delete
<div class="upgrade_to_pro">
[23] Fix | Delete
<h2><?php esc_html_e( 'Upgrade to Pro','wp-bulk-delete'); ?></h2>
[24] Fix | Delete
<p><?php esc_html_e( 'Unlock more power to bulk delete operation, Upgrade today!!','wp-bulk-delete'); ?></p>
[25] Fix | Delete
<a class="button button-primary upgrade_button" href="<?php echo esc_url(WPBD_PLUGIN_BUY_NOW_URL); ?>" target="_blank">
[26] Fix | Delete
<?php esc_html_e( 'Upgrade to Pro','wp-bulk-delete'); ?>
[27] Fix | Delete
</a>
[28] Fix | Delete
</div>
[29] Fix | Delete
[30] Fix | Delete
<div class="upgrade_to_pro">
[31] Fix | Delete
<h2><?php esc_html_e( 'Custom WordPress Development Services','wp-bulk-delete'); ?></h2>
[32] Fix | Delete
<p><?php esc_html_e( "From small blogs to complex web apps, we push the limits of what's possible with WordPress.","wp-bulk-delete" ); ?></p>
[33] Fix | Delete
<a class="button button-primary upgrade_button" href="<?php echo esc_url('https://xylusthemes.com/contact/?utm_source=insideplugin&utm_medium=web&utm_content=sidebar&utm_campaign=freeplugin'); ?>" target="_blank">
[34] Fix | Delete
<?php esc_html_e( 'Hire Us','wp-bulk-delete'); ?>
[35] Fix | Delete
</a>
[36] Fix | Delete
</div>
[37] Fix | Delete
[38] Fix | Delete
<div>
[39] Fix | Delete
<p style="text-align:center">
[40] Fix | Delete
<strong><?php esc_html_e( 'Would you like to remove these ads?','wp-bulk-delete'); ?></strong><br>
[41] Fix | Delete
<a href="<?php echo esc_url(WPBD_PLUGIN_BUY_NOW_URL); ?>" target="_blank">
[42] Fix | Delete
<?php esc_html_e( 'Get Premium','wp-bulk-delete'); ?>
[43] Fix | Delete
</a>
[44] Fix | Delete
</p>
[45] Fix | Delete
</div>
[46] Fix | Delete
<?php
[47] Fix | Delete
}
[48] Fix | Delete
}
[49] Fix | Delete
add_action( 'wpbd_admin_sidebar', 'wpbd_admin_sidebar', 10 );
[50] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function