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: content.tpl.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* The template for the main content of the panel.
[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
?>
[10] Fix | Delete
<!-- Header Block -->
[11] Fix | Delete
<?php $this->get_template( 'header.tpl.php' ); ?>
[12] Fix | Delete
[13] Fix | Delete
<!-- Intro Text -->
[14] Fix | Delete
<?php if ( isset( $this->parent->args['intro_text'] ) ) { ?>
[15] Fix | Delete
<div id="redux-intro-text"><?php echo wp_kses_post( $this->parent->args['intro_text'] ); ?></div>
[16] Fix | Delete
<?php } ?>
[17] Fix | Delete
[18] Fix | Delete
<?php $this->get_template( 'menu-container.tpl.php' ); ?>
[19] Fix | Delete
[20] Fix | Delete
<div class="redux-main">
[21] Fix | Delete
<!-- Stickybar -->
[22] Fix | Delete
<?php $this->get_template( 'header-stickybar.tpl.php' ); ?>
[23] Fix | Delete
<div id="redux_ajax_overlay">&nbsp;</div>
[24] Fix | Delete
<?php foreach ( $this->parent->sections as $k => $section ) { ?>
[25] Fix | Delete
<?php if ( isset( $section['customizer_only'] ) && true === $section['customizer_only'] ) { ?>
[26] Fix | Delete
<?php continue; ?>
[27] Fix | Delete
<?php } // phpcs:ignore Squiz.PHP.NonExecutableCode.Unreachable ?>
[28] Fix | Delete
[29] Fix | Delete
<?php $section['class'] = isset( $section['class'] ) ? ' ' . $section['class'] : ''; ?>
[30] Fix | Delete
[31] Fix | Delete
<?php $disabled = ''; ?>
[32] Fix | Delete
<?php if ( isset( $section['disabled'] ) && $section['disabled'] ) { ?>
[33] Fix | Delete
<?php $disabled = 'disabled '; ?>
[34] Fix | Delete
<?php } ?>
[35] Fix | Delete
[36] Fix | Delete
<div
[37] Fix | Delete
id="<?php echo esc_attr( $k ); ?>_section_group"
[38] Fix | Delete
class="redux-group-tab <?php echo esc_attr( $disabled ); ?><?php echo esc_attr( $section['class'] ); ?>"
[39] Fix | Delete
data-rel="<?php echo esc_attr( $k ); ?>">
[40] Fix | Delete
[41] Fix | Delete
<?php $display = true; ?>
[42] Fix | Delete
[43] Fix | Delete
<?php if ( isset( $_GET['page'] ) && $this->parent->args['page_slug'] === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification ?>
[44] Fix | Delete
<?php if ( isset( $section['panel'] ) && false === $section['panel'] ) { ?>
[45] Fix | Delete
<?php $display = false; ?>
[46] Fix | Delete
<?php } ?>
[47] Fix | Delete
<?php } ?>
[48] Fix | Delete
[49] Fix | Delete
<?php
[50] Fix | Delete
if ( $display ) {
[51] Fix | Delete
/**
[52] Fix | Delete
* Action 'redux/page/{opt_name}/section/before'
[53] Fix | Delete
*
[54] Fix | Delete
* @param object $this ReduxFramework
[55] Fix | Delete
*/
[56] Fix | Delete
[57] Fix | Delete
// phpcs:ignore WordPress.NamingConventions.ValidHookName
[58] Fix | Delete
do_action( "redux/page/{$this->parent->args['opt_name']}/section/before", $section );
[59] Fix | Delete
[60] Fix | Delete
$this->output_section( $k );
[61] Fix | Delete
[62] Fix | Delete
/**
[63] Fix | Delete
* Action 'redux/page/{opt_name}/section/after'
[64] Fix | Delete
*
[65] Fix | Delete
* @param object $this ReduxFramework
[66] Fix | Delete
*/
[67] Fix | Delete
[68] Fix | Delete
// phpcs:ignore WordPress.NamingConventions.ValidHookName
[69] Fix | Delete
do_action( "redux/page/{$this->parent->args['opt_name']}/section/after", $section );
[70] Fix | Delete
}
[71] Fix | Delete
?>
[72] Fix | Delete
</div> <!-- section group -->
[73] Fix | Delete
<?php } ?>
[74] Fix | Delete
[75] Fix | Delete
<?php
[76] Fix | Delete
/**
[77] Fix | Delete
* Action 'redux/page/{opt_name}/sections/after'
[78] Fix | Delete
*
[79] Fix | Delete
* @param object $this ReduxFramework
[80] Fix | Delete
*/
[81] Fix | Delete
[82] Fix | Delete
// phpcs:ignore WordPress.NamingConventions.ValidHookName
[83] Fix | Delete
do_action( "redux/page/{$this->parent->args['opt_name']}/sections/after", $this );
[84] Fix | Delete
?>
[85] Fix | Delete
<div class="clear"></div>
[86] Fix | Delete
<!-- Footer Block -->
[87] Fix | Delete
<?php $this->get_template( 'footer.tpl.php' ); ?>
[88] Fix | Delete
<div id="redux-sticky-padder" style="display: none;">&nbsp;</div>
[89] Fix | Delete
</div> <!-- redux main -->
[90] Fix | Delete
<div class="clear"></div>
[91] Fix | Delete
[92] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function