HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/cortonavolley/wp-content/themes/subway/includes/modules/sidearea.php
<?php
$subway_options = subway_qode_return_global_options();
$enable_side_area  = "yes";

if ( isset( $subway_options['enable_side_area'] ) && $subway_options['enable_side_area'] == "no" ) {
    $enable_side_area = "no";
}

if ( $enable_side_area != "no" && is_active_sidebar( 'sidearea' ) ) { ?>
    <section class="side_menu right">
        <div class="side_menu_title">
            <h5><?php if(isset($subway_options['side_area_title']) && $subway_options['side_area_title'] != "") { echo wp_kses_post( $subway_options['side_area_title'] ); } else { esc_html_e('Side Menu', 'subway'); } ?></h5>
            <a href="#" target="_self" class="close_side_menu"></a>
        </div>
        <?php dynamic_sidebar( 'sidearea' ); ?>
    </section>
<?php } ?>