: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* The template for the panel header area.
* Override this template by specifying the path where it is stored (templates_path) in your Redux config.
* @author Redux Framework
* @package ReduxFramework/Templates
$tip_title = esc_html__( 'Developer Mode Enabled', 'redux-framework' );
if ( $this->parent->args_class->dev_mode_forced ) {
if ( Redux_Helpers::is_wp_debug() ) {
$debug_bit = esc_html__( 'WP_DEBUG is enabled', 'redux-framework' );
if ( Redux_Helpers::is_local_host() ) {
$localhost_bit = esc_html__( 'you are working in a localhost environment', 'redux-framework' );
if ( $is_localhost && $is_debug ) {
$conjunction_bit = ' ' . esc_html__( 'and', 'redux-framework' ) . ' ';
$tip_msg = esc_html__( 'This has been automatically enabled because', 'redux-framework' ) . ' ' . $debug_bit . $conjunction_bit . $localhost_bit . '.';
$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' );
<?php if ( ! empty( $this->parent->args['display_name'] ) ) { ?>
<div class="display_header">
<?php if ( isset( $this->parent->args['dev_mode'] ) && $this->parent->args['dev_mode'] ) { ?>
class="redux-dev-mode-notice-container redux-dev-qtip"
qtip-title="<?php echo esc_attr( $tip_title ); ?>"
qtip-content="<?php echo esc_attr( $tip_msg ); ?>">
<span class="redux-dev-mode-notice"><?php esc_html_e( 'Developer Mode Enabled', 'redux-framework' ); ?></span>
<h2><?php echo wp_kses_post( $this->parent->args['display_name'] ); ?></h2>
<?php if ( ! empty( $this->parent->args['display_version'] ) ) { ?>
<span><?php echo wp_kses_post( $this->parent->args['display_version'] ); ?></span>
<div class="clear"></div>