HEX
Server: Apache
System: Linux webd011.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: ezpgggd (105871)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/ezpgggd/www/wp-content/plugins/wp-megamenu/includes/compability.php
<?php
/**
 * Twenty Sixteen Theme
 */
add_action('wp_head', 'wpmm_css_compatibility');
function wpmm_css_compatibility(){
    $style = '<style type="text/css">';

    $current_theme = wp_get_theme();
    $theme_name = $current_theme->get_stylesheet();
    if ($theme_name === 'twentysixteen'){
        $style .= '.site-header-menu{';
        $style .= 'display: block;';
        $style .= '}';
    }

    if($theme_name === 'storefront'){
        $style .= "
            .main-navigation ul ul, .secondary-navigation ul ul{float: none}
            .main-navigation ul.menu ul li a, .main-navigation ul.nav-menu ul li a{padding: 0}
            .handheld-navigation, .main-navigation div.menu>ul:not(.nav-menu), .nav-menu{overflow: visible}
            .wp-megamenu-wrap .wpmm-nav-wrap::after, .wp-megamenu-wrap .wpmm-nav-wrap::before{content: '';display: table;clear: both;}
            
        ";
    }

    $style .= '</style>';
    echo wpmm_sanitize_inline_css_output( $style );
}