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: container.tpl.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* The template for the main panel container.
[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.4.4
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
$expanded = ( $this->parent->args['open_expanded'] ) ? ' fully-expanded' : ( ! empty( $this->parent->args['class'] ) ? ' ' . esc_attr( $this->parent->args['class'] ) : '' );
[10] Fix | Delete
$nonce = wp_create_nonce( 'redux_ajax_nonce' . $this->parent->args['opt_name'] );
[11] Fix | Delete
$actionn = ( 'network' === $this->parent->args['database'] && $this->parent->args['network_admin'] && is_network_admin() ? './edit.php?action=redux_' . $this->parent->args['opt_name'] : './options.php' );
[12] Fix | Delete
[13] Fix | Delete
// Last tab?
[14] Fix | Delete
$this->parent->options['last_tab'] = ( isset( $_GET['tab'] ) && ! isset( $this->parent->transients['last_save_mode'] ) ) ? sanitize_text_field( wp_unslash( $_GET['tab'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification
[15] Fix | Delete
[16] Fix | Delete
?>
[17] Fix | Delete
<div
[18] Fix | Delete
class="redux-container<?php echo esc_attr( $expanded ); ?>">
[19] Fix | Delete
[20] Fix | Delete
<form
[21] Fix | Delete
method="post"
[22] Fix | Delete
action="<?php echo esc_attr( $actionn ); ?>"
[23] Fix | Delete
data-nonce="<?php echo esc_attr( $nonce ); ?>"
[24] Fix | Delete
enctype="multipart/form-data"
[25] Fix | Delete
class="redux-form-wrapper"
[26] Fix | Delete
id="redux-form-wrapper"
[27] Fix | Delete
data-opt-name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>">
[28] Fix | Delete
<input
[29] Fix | Delete
type="hidden" id="redux-compiler-hook"
[30] Fix | Delete
name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[compiler]"
[31] Fix | Delete
value=""/>
[32] Fix | Delete
<input
[33] Fix | Delete
type="hidden" id="currentSection"
[34] Fix | Delete
name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[redux-section]"
[35] Fix | Delete
value=""/>
[36] Fix | Delete
<?php if ( ! empty( $this->parent->options_class->no_panel ) ) { ?>
[37] Fix | Delete
<input
[38] Fix | Delete
type="hidden"
[39] Fix | Delete
name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[redux-no_panel]"
[40] Fix | Delete
value="<?php echo esc_attr( implode( '|', $this->parent->options_class->no_panel ) ); ?>"/>
[41] Fix | Delete
<?php } ?>
[42] Fix | Delete
<?php $this->init_settings_fields(); // Must run or the page won't redirect properly. ?>
[43] Fix | Delete
<input
[44] Fix | Delete
type="hidden" id="last_tab"
[45] Fix | Delete
name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[last_tab]"
[46] Fix | Delete
value="<?php echo esc_attr( $this->parent->options['last_tab'] ); ?>"/>
[47] Fix | Delete
<?php $this->get_template( 'content.tpl.php' ); ?>
[48] Fix | Delete
</form>
[49] Fix | Delete
</div>
[50] Fix | Delete
[51] Fix | Delete
<?php if ( isset( $this->parent->args['footer_text'] ) ) { ?>
[52] Fix | Delete
<div id="redux-sub-footer"><?php echo wp_kses_post( $this->parent->args['footer_text'] ); ?></div>
[53] Fix | Delete
<?php } ?>
[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