Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter luisferrans

    (@luisferrans)

    Plugin Author megamenu

    (@megamenu)

    Hi Luis,

    Strange, I just replied to someone using the same theme with a similar problem. Please see:

    https://www.ads-software.com/support/topic/flyout-wont-stay-open?replies=2

    I’m afraid I can’t give exact steps to follow as it’s a premium theme. If you do need exact steps please get in touch through https://www.maxmegamenu.com/support/ (use WPSupport as the licence key) and I’ll write up some theme integration instructions.

    Regards,
    Tom

    Thread Starter luisferrans

    (@luisferrans)

    Thanks Tom .. I was reading that threat also… I will try on another updated Safari as the Mac I am using is a little old. 10.7.5

    Thread Starter luisferrans

    (@luisferrans)

    On some windows… It is visible, but on Mac … nothing.

    I am trying your link but nothing yet.

    Thread Starter luisferrans

    (@luisferrans)

    this is my header.php

    <!DOCTYPE html>
    <!–[if IE 7]><html class=”ie ie7 ltie8 ltie9″ <?php language_attributes(); ?>><![endif]–>
    <!–[if IE 8]><html class=”ie ie8 ltie9″ <?php language_attributes(); ?>><![endif]–>
    <!–[if !(IE 7) | !(IE 8) ]><!–>
    <html <?php language_attributes(); ?>>
    <!–<![endif]–>

    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <?php
    global $theme_option, $gdlr_post_option;
    $body_wrapper = ”;
    if(empty($theme_option[‘enable-responsive-mode’]) || $theme_option[‘enable-responsive-mode’] == ‘enable’){
    echo ‘<meta name=”viewport” content=”initial-scale=1.0″ />’;
    }else{
    $body_wrapper .= ‘gdlr-no-responsive ‘;
    }
    ?>
    <title><?php bloginfo(‘name’); ?> <?php wp_title(); ?></title>
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <?php
    if( !empty($gdlr_post_option) ){ $gdlr_post_option = json_decode($gdlr_post_option, true); }

    wp_head();
    ?>
    </head>

    <body <?php body_class(); ?>>
    <?php
    if($theme_option[‘enable-boxed-style’] == ‘boxed-style’){
    $body_wrapper = ‘gdlr-boxed-style’;
    if( !empty($theme_option[‘boxed-background-image’]) && is_numeric($theme_option[‘boxed-background-image’]) ){
    $alt_text = get_post_meta($theme_option[‘boxed-background-image’] , ‘_wp_attachment_image_alt’, true);
    $image_src = wp_get_attachment_image_src($theme_option[‘boxed-background-image’], ‘full’);
    echo ‘<img class=”gdlr-full-boxed-background” src=”‘ . $image_src[0] . ‘” alt=”‘ . $alt_text . ‘” />’;
    }else if( !empty($theme_option[‘boxed-background-image’]) ){
    echo ‘<img class=”gdlr-full-boxed-background” src=”‘ . $theme_option[‘boxed-background-image’] . ‘” />’;
    }
    }
    $header_style = ”;
    if( empty($gdlr_post_option[‘header-style’]) || $gdlr_post_option[‘header-style’] == ‘default’ ){
    $header_style = $theme_option[‘header-style’];
    }else{
    $header_style = $gdlr_post_option[‘header-style’];
    }

    $body_wrapper .= ($theme_option[‘enable-float-menu’] != ‘disable’)? ‘ float-menu’: ”;
    $body_wrapper .= ($header_style != ‘transparent’)? ‘ header-style-solid’: ‘ header-style-transparent’;
    $body_wrapper .= (is_page() && !empty($gdlr_post_option[‘show-title’]) && $gdlr_post_option[‘show-title’] == ‘disable’)? ‘ gdlr-header-off’: ”;
    ?>
    <div class=”body-wrapper <?php echo $body_wrapper; ?>” data-home=”<?php echo home_url(); ?>” >
    <?php
    // page style
    if( empty($gdlr_post_option) || empty($gdlr_post_option[‘page-style’]) ||
    $gdlr_post_option[‘page-style’] == ‘normal’ ||
    $gdlr_post_option[‘page-style’] == ‘no-footer’){
    ?>

    <!– top navigation –>
    <?php if( empty($theme_option[‘enable-top-bar’]) || $theme_option[‘enable-top-bar’] == ‘enable’ ){ ?>
    <div class=”top-navigation-wrapper”>
    <div class=”top-navigation-container container”>
    <div class=”top-navigation-left”>
    <div class=”top-navigation-left-text”>
    <?php
    if( !empty($theme_option[‘top-bar-left-text’]) ){
    echo gdlr_text_filter($theme_option[‘top-bar-left-text’]);
    }
    ?>
    </div>
    <?php
    echo ‘<div class=”gdlr-top-bar-login-wrapper”>’;
    if(is_user_logged_in()){
    echo ‘‘;
    echo __(‘My Account’, ‘gdlr_translate’);
    echo ‘
    ‘;
    echo ‘<i class=”fa ‘ . gdlr_fa_class(‘icon-lock’) . ‘”></i>’ . __(‘Logout’, ‘gdlr_translate’) . ‘‘;
    }else{
    echo ‘<i class=”fa ‘ . gdlr_fa_class(‘icon-lock’) . ‘”></i>’ . __(‘Login’, ‘gdlr_translate’) . ‘‘;
    echo ‘<div class=”gdlr-top-bar-login”>’;
    wp_login_form(array(
    ‘label_username’ => __(‘Username’, ‘gdlr_translate’),
    ‘label_password’ => __(‘Password’, ‘gdlr_translate’),
    ‘label_remember’ => __(‘Remember Me’, ‘gdlr_translate’),
    ‘label_log_in’ => __(‘Login’, ‘gdlr_translate’)
    ));

    $account_registration = get_option(‘woocommerce_enable_myaccount_registration’, ‘no’);
    if( $account_registration == ‘yes’ ){
    echo ‘‘;
    echo __(‘Register’, ‘gdlr_translate’);
    echo ‘
    ‘;
    }
    echo ‘</div>’;
    }
    echo ‘</div>’;
    ?>
    </div>
    <div class=”top-navigation-right”>
    <div class=”top-social-wrapper”>
    <?php gdlr_print_header_social(); ?>
    </div>
    </div>
    <div class=”clear”></div>
    </div>
    </div>
    <?php } ?>

    <header class=”gdlr-header-wrapper”>
    <div class=”gdlr-header-inner”>
    <div class=”gdlr-header-container container”>

    <!– logo –>
    <div class=”gdlr-logo”>
    ” >
    <?php
    if($header_style != ‘transparent’){
    if(empty($theme_option[‘logo-id’])){
    echo gdlr_get_image(GDLR_PATH . ‘/images/logo.png’);
    }else{
    echo gdlr_get_image($theme_option[‘logo-id’]);
    }
    }else{
    if(empty($theme_option[‘logo-id’])){
    $theme_option[‘logo-id’] = GDLR_PATH . ‘/images/logo.png’;
    }else if(is_numeric($theme_option[‘logo-id’])){
    $image_src = wp_get_attachment_image_src($theme_option[‘logo-id’], ‘full’);
    $theme_option[‘logo-id’] = $image_src[0];
    }

    $attr = ‘ data-normal=”‘ . $theme_option[‘logo-id’] . ‘” ‘;
    if(empty($theme_option[‘logot-id’])){
    echo gdlr_get_image(GDLR_PATH . ‘/images/logo.png’, ‘full’, array(), $attr);
    }else{
    echo gdlr_get_image($theme_option[‘logot-id’], ‘full’, array(), $attr);
    }
    }
    ?>

    <?php
    // mobile navigation
    if( class_exists(‘gdlr_dlmenu_walker’) && has_nav_menu(‘main_menu’) &&
    ( empty($theme_option[‘enable-responsive-mode’]) || $theme_option[‘enable-responsive-mode’] == ‘enable’ ) ){
    echo ‘<div class=”gdlr-responsive-navigation dl-menuwrapper” id=”gdlr-responsive-navigation” >’;
    echo ‘<button class=”dl-trigger”>Open Menu</button>’;
    wp_nav_menu( array(
    ‘theme_location’=>’main_menu’,
    ‘container’=> ”,
    ‘menu_class’=> ‘dl-menu gdlr-main-mobile-menu’,
    ‘walker’=> new gdlr_dlmenu_walker()
    ) );
    echo ‘</div>’;
    }
    ?>
    </div>

    <!– navigation –>
    <?php get_template_part( ‘header’, ‘nav’ ); ?>

    <div class=”clear”></div>
    </div>
    </div>
    <div class=”clear”></div>
    </header>
    <div id=”gdlr-header-substitute” ></div>
    <?php get_template_part( ‘header’, ‘title’ );

    } // page style ?>
    <div class=”content-wrapper”>

    Plugin Author megamenu

    (@megamenu)

    Hi,

    Please check the screenshot I posted in this topic:

    https://www.ads-software.com/support/topic/flyout-wont-stay-open?replies=2

    Then search your header.php file for the ‘gdlr-responsive-navigation’ ID and delete it. That should get the menu working properly.

    Regards,
    Tom

    Thread Starter luisferrans

    (@luisferrans)

    Thanks Tom … It did function ok thanks.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Not Working on Safari, FireFox (MAC)’ is closed to new replies.