luisferrans
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Not Working on Safari, FireFox (MAC)Thanks Tom … It did function ok thanks.
Forum: Plugins
In reply to: [Max Mega Menu] Not Working on Safari, FireFox (MAC)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”>$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”>Forum: Plugins
In reply to: [Max Mega Menu] Not Working on Safari, FireFox (MAC)On some windows… It is visible, but on Mac … nothing.
I am trying your link but nothing yet.
Forum: Plugins
In reply to: [Max Mega Menu] Not Working on Safari, FireFox (MAC)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
Forum: Plugins
In reply to: [Max Mega Menu] Not Working on Safari, FireFox (MAC)On this site:
Forum: Fixing WordPress
In reply to: I need help about WordPress and GoDaddyHello Guyss…
I have a problem, one of my clients is experiencing the following:
After Activating GODADDY WORDPRESS MANAGED HOSTING. (which I may say is extremely fast, this was a surprise for me)
The Issue is CANT ACCESS the website via “WORDPRESS MOBILE APP”
Any pointers here, I was on the phone with support and the guy suggested a Plugin but I think he is wrong as he recomended a WP Touch plugin… which is for setting the site mobile…
Anyway help will be appreciated.
Best Regards
Luis F