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/redux-fr.../redux-co.../template.../panel
File: header.tpl.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* The template for the panel header area.
[2] Fix | Delete
* Override this template by specifying the path where it is stored (templates_path) in your Redux config.
[3] Fix | Delete
*
[4] Fix | Delete
* @author Redux Framework
[5] Fix | Delete
* @package ReduxFramework/Templates
[6] Fix | Delete
* @version: 4.0.0
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
$tip_title = esc_html__( 'Developer Mode Enabled', 'redux-framework' );
[10] Fix | Delete
[11] Fix | Delete
if ( $this->parent->args_class->dev_mode_forced ) {
[12] Fix | Delete
$is_debug = false;
[13] Fix | Delete
$is_localhost = false;
[14] Fix | Delete
$debug_bit = '';
[15] Fix | Delete
[16] Fix | Delete
if ( Redux_Helpers::is_wp_debug() ) {
[17] Fix | Delete
$is_debug = true;
[18] Fix | Delete
$debug_bit = esc_html__( 'WP_DEBUG is enabled', 'redux-framework' );
[19] Fix | Delete
}
[20] Fix | Delete
[21] Fix | Delete
$localhost_bit = '';
[22] Fix | Delete
if ( Redux_Helpers::is_local_host() ) {
[23] Fix | Delete
$is_localhost = true;
[24] Fix | Delete
$localhost_bit = esc_html__( 'you are working in a localhost environment', 'redux-framework' );
[25] Fix | Delete
}
[26] Fix | Delete
[27] Fix | Delete
$conjunction_bit = '';
[28] Fix | Delete
if ( $is_localhost && $is_debug ) {
[29] Fix | Delete
$conjunction_bit = ' ' . esc_html__( 'and', 'redux-framework' ) . ' ';
[30] Fix | Delete
}
[31] Fix | Delete
[32] Fix | Delete
$tip_msg = esc_html__( 'This has been automatically enabled because', 'redux-framework' ) . ' ' . $debug_bit . $conjunction_bit . $localhost_bit . '.';
[33] Fix | Delete
} else {
[34] Fix | Delete
$tip_msg = esc_html__( 'If you are not a developer, your theme/plugin author shipped with developer mode enabled. Contact them directly to fix it.', 'redux-framework' );
[35] Fix | Delete
}
[36] Fix | Delete
[37] Fix | Delete
?>
[38] Fix | Delete
<div id="redux-header">
[39] Fix | Delete
<?php if ( ! empty( $this->parent->args['display_name'] ) ) { ?>
[40] Fix | Delete
<div class="display_header">
[41] Fix | Delete
<?php if ( isset( $this->parent->args['dev_mode'] ) && $this->parent->args['dev_mode'] ) { ?>
[42] Fix | Delete
<div
[43] Fix | Delete
class="redux-dev-mode-notice-container redux-dev-qtip"
[44] Fix | Delete
qtip-title="<?php echo esc_attr( $tip_title ); ?>"
[45] Fix | Delete
qtip-content="<?php echo esc_attr( $tip_msg ); ?>">
[46] Fix | Delete
<span class="redux-dev-mode-notice"><?php esc_html_e( 'Developer Mode Enabled', 'redux-framework' ); ?></span>
[47] Fix | Delete
</div>
[48] Fix | Delete
<?php } ?>
[49] Fix | Delete
<h2><?php echo wp_kses_post( $this->parent->args['display_name'] ); ?></h2>
[50] Fix | Delete
<?php if ( ! empty( $this->parent->args['display_version'] ) ) { ?>
[51] Fix | Delete
<span><?php echo wp_kses_post( $this->parent->args['display_version'] ); ?></span>
[52] Fix | Delete
<?php } ?>
[53] Fix | Delete
</div>
[54] Fix | Delete
<?php } ?>
[55] Fix | Delete
<div class="clear"></div>
[56] Fix | Delete
</div>
[57] Fix | Delete
[58] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function