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: menu-container.tpl.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* The template for the menu container 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.3.11
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
?>
[10] Fix | Delete
<div class="redux-sidebar">
[11] Fix | Delete
<ul class="redux-group-menu">
[12] Fix | Delete
<?php
[13] Fix | Delete
foreach ( $this->parent->sections as $k => $section ) {
[14] Fix | Delete
$the_title = $section['title'] ?? '';
[15] Fix | Delete
$skip_sec = false;
[16] Fix | Delete
foreach ( $this->parent->options_class->hidden_perm_sections as $num => $section_title ) {
[17] Fix | Delete
if ( $section_title === $the_title ) {
[18] Fix | Delete
$skip_sec = true;
[19] Fix | Delete
}
[20] Fix | Delete
}
[21] Fix | Delete
[22] Fix | Delete
if ( isset( $section['customizer_only'] ) && true === $section['customizer_only'] ) {
[23] Fix | Delete
continue;
[24] Fix | Delete
}
[25] Fix | Delete
[26] Fix | Delete
if ( false === $skip_sec ) {
[27] Fix | Delete
echo( $this->parent->render_class->section_menu( $k, $section ) ); // phpcs:ignore WordPress.Security.EscapeOutput
[28] Fix | Delete
$skip_sec = false;
[29] Fix | Delete
}
[30] Fix | Delete
}
[31] Fix | Delete
[32] Fix | Delete
/**
[33] Fix | Delete
* Action 'redux/page/{opt_name}/menu/after'
[34] Fix | Delete
*
[35] Fix | Delete
* @param object $this ReduxFramework
[36] Fix | Delete
*/
[37] Fix | Delete
do_action( "redux/page/{$this->parent->args['opt_name']}/menu/after", $this ); // phpcs:ignore WordPress.NamingConventions.ValidHookName
[38] Fix | Delete
?>
[39] Fix | Delete
</ul>
[40] Fix | Delete
</div>
[41] Fix | Delete
[42] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function