| Server IP : 45.162.171.154 / Your IP : 216.73.216.5 Web Server : Apache System : Linux vxct2015.avnam.net 5.4.106-1-pve #1 SMP PVE 5.4.106-1 (Fri, 19 Mar 2021 11:08:47 +0100) x86_64 User : lpg.com.ar ( 1041) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/lpg.com.ar/public_html/wp-content/themes/thegem/ |
Upload File : |
<?php
$thegem_page_id = is_singular() ? get_the_ID() : 0;
$thegem_shop_page = 0;
if(is_404() && get_post(thegem_get_option('404_page'))) {
$thegem_page_id = thegem_get_option('404_page');
}
if(is_post_type_archive('product') && function_exists('wc_get_page_id')) {
$thegem_page_id = wc_get_page_id('shop');
$thegem_shop_page = 1;
}
$thegem_header_params = $thegem_effects_params = thegem_get_output_page_settings($thegem_page_id);
if((is_archive() || is_home()) && !$thegem_shop_page && !is_post_type_archive('tribe_events')) {
if(is_tax('product_cat') || is_tax('product_tag') || is_tax('product_brand')) {
$thegem_header_params = $thegem_effects_params = thegem_get_output_page_settings(0, thegem_theme_options_get_page_settings('product_categories'), 'product_category');
} else {
if(is_post_type_archive() && in_array(get_queried_object()->name, thegem_get_available_po_custom_post_types())) {
$thegem_header_params = $thegem_effects_params = thegem_get_output_page_settings(0, thegem_theme_options_get_page_settings(get_queried_object()->name.'_archive'), 'cpt_archive');
} else {
$thegem_header_params = $thegem_effects_params = thegem_get_output_page_settings(0, thegem_theme_options_get_page_settings('blog'), 'blog');
}
}
}
if(is_tax() || is_category() || is_tag()) {
$thegem_term_id = get_queried_object()->term_id;
$thegem_header_params = $thegem_effects_params = thegem_get_output_page_settings($thegem_term_id, array(), 'term');
}
if (is_search()) {
$thegem_header_params = $thegem_effects_params = thegem_get_output_page_settings(0, thegem_theme_options_get_page_settings('search'), 'search');
}
if($thegem_effects_params['effects_page_scroller']) {
$thegem_header_params['header_hide_top_area'] = true;
$thegem_header_params['header_hide_top_area_tablet'] = true;
$thegem_header_params['header_hide_top_area_mobile'] = true;
$thegem_header_params['header_transparent'] = true;
}
$thegem_header_light = $thegem_header_params['header_menu_logo_light'] ? '_light' : '';
$hide_top_area = $thegem_header_params['header_hide_top_area'] && $thegem_header_params['header_hide_top_area_tablet'] && $thegem_header_params['header_hide_top_area_mobile'];
if(thegem_get_option('header_layout') == 'vertical' || is_singular('thegem_templates')) {
$thegem_header_params['header_transparent'] = false;
}
$logo_position = thegem_get_option('logo_position', 'left');
if(thegem_get_option('logo_position', 'left') == 'menu_center' && !((has_nav_menu('primary') || $thegem_header_params['header_custom_menu']) && $thegem_header_params['menu_show'])) {
$logo_position = 'center';
}
?><!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<?php wp_head(); ?>
<?php
if (thegem_get_option('font_preload_enabled')) {
$fonts = thegem_get_option('font_preload_preloaded_fonts');
$additionalFonts = thegem_additionals_fonts();
$sysFontUri = THEGEM_THEME_URI.'/fonts/';
$sysFonts = array(
'Thegem Icons' => $sysFontUri.'thegem-icons.woff',
'Elegant Icons' => $sysFontUri.'elegant/ElegantIcons.woff',
'Materialdesign Icons' => $sysFontUri.'material/materialdesignicons.woff',
'Fontawesome Icons' => $sysFontUri.'fontawesome/fontawesome-webfont.woff',
'Header Icons' => $sysFontUri.'thegem-header/thegem-header.woff',
'Thegem Socials' => $sysFontUri.'thegem-socials.woff',
);
foreach(explode(',', $fonts) as $font) {
$url = isset($sysFonts[$font]) ? $sysFonts[$font]:'';
if (!$url) {
foreach($additionalFonts as $additionalFont) {
if ($additionalFont['font_name'] == $font && isset($additionalFont['font_url_woff2'])) {
$url = $additionalFont['font_url_woff2'];
break;
}
if ($additionalFont['font_name'] == $font && isset($additionalFont['font_url_woff'])) {
$url = $additionalFont['font_url_woff'];
break;
}
}
}
if ($url) {
echo '<link rel="preload" as="font" crossorigin="anonymous" type="font/woff" href="'.$url."\">\n";
}
}
}
?>
</head>
<?php
$thegem_preloader_data = $thegem_header_params;
?>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('gem_before_page_content'); ?>
<?php if ($thegem_preloader_data && !empty($thegem_preloader_data['enable_page_preloader'])) : ?>
<div id="page-preloader"><div class="page-preloader-spin"></div></div>
<?php do_action('gem_after_page_preloader'); ?>
<?php endif; ?>
<?php if(thegem_get_option('header_layout') == 'perspective' && $thegem_header_params['menu_show']) : ?>
<div id="thegem-perspective" class="thegem-perspective effect-moveleft">
<div class="thegem-perspective-menu-wrapper <?php echo ($thegem_header_params['header_menu_logo_light'] ? ' header-colors-light' : ''); ?> mobile-menu-layout-<?php echo esc_attr(thegem_get_option('mobile_menu_layout', 'default')); ?><?php echo thegem_get_option('mobile_menu_layout', 'default') == 'global-section' ? ' mobile-menu-layout-slide-horizontal' : ''; ?><?php echo thegem_get_option('hamburger_menu_cart_position') ? ' perspective-without-cart' : ''; ?>">
<nav id="primary-navigation" class="site-navigation primary-navigation perspective-navigation vertical right" role="navigation">
<?php do_action('thegem_before_perspective_nav_menu'); ?>
<?php if($thegem_header_params['header_custom_menu']) : ?>
<?php wp_nav_menu(array('menu' => $thegem_header_params['header_custom_menu'], 'menu_id' => 'primary-menu', 'menu_class' => apply_filters( 'thegem_nav_menu_class', 'nav-menu styled no-responsive' ), 'container' => false, 'walker' => new TheGem_Mega_Menu_Walker)); ?>
<?php else: ?>
<?php wp_nav_menu(array('theme_location' => 'primary', 'menu_id' => 'primary-menu', 'menu_class' => apply_filters( 'thegem_nav_menu_class', 'nav-menu styled no-responsive' ), 'container' => false, 'walker' => new TheGem_Mega_Menu_Walker)); ?>
<?php endif; ?>
<?php do_action('thegem_after_perspective_nav_menu'); ?>
</nav>
</div>
<?php endif; ?>
<div id="page" class="layout-<?php echo esc_attr(thegem_get_option('page_layout_style', 'fullwidth')); ?><?php echo esc_attr(thegem_get_option('header_layout') == 'vertical' ? ' vertical-header' : '') ; ?> header-style-<?php echo esc_attr(thegem_get_option('header_layout') == 'vertical' || thegem_get_option('header_layout') == 'fullwidth_hamburger' ? 'vertical' : thegem_get_option('header_style')); ?>">
<a href="#main" class="scroll-to-content"><?php esc_html_e('Skip to main content', 'thegem'); ?></a>
<?php if(!thegem_get_option('disable_scroll_top_button')) : ?>
<a href="#page" class="scroll-top-button"><?php esc_html_e('Scroll Top', 'thegem'); ?></a>
<?php endif; ?>
<?php if(!$thegem_effects_params['effects_hide_header'] && $thegem_effects_params['header_source'] == 'default') : ?>
<?php if(!$hide_top_area && (thegem_get_option('header_layout') == 'vertical' || thegem_get_option('top_area_disable_fixed')) && !($thegem_header_params['header_transparent'] && $thegem_header_params['header_top_area_transparent'])) : ?>
<div class="top-area-background<?php echo thegem_get_option('top_area_disable_fixed') ? ' top-area-scroll-hide' : ''; ?>">
<?php get_template_part('top_area'); ?>
</div>
<?php endif; ?>
<div id="site-header-wrapper" class="<?php echo $thegem_header_params['header_transparent'] ? 'site-header-wrapper-transparent' : ''; ?> <?php echo $thegem_header_params['sticky_header_on_mobile'] === '1' ? ' sticky-header-on-mobile' : ''; ?> <?php echo thegem_get_option('sticky_header_on_mobile') === 'disabled' ? ' sticky-header-on-mobile-disabled' : ''; ?>" >
<?php if(thegem_get_option('header_layout') == 'fullwidth_hamburger') : ?><div class="hamburger-overlay"></div><?php endif; ?>
<?php do_action('thegem_before_header'); ?>
<header id="site-header" class="site-header<?php echo ($thegem_header_params['disable_fixed_header'] || thegem_get_option('header_layout') == 'vertical' ? '' : ' animated-header'); ?><?php echo thegem_get_option('header_on_slideshow') ? ' header-on-slideshow' : ''; ?> mobile-menu-layout-<?php echo esc_attr(thegem_get_option('mobile_menu_layout', 'default')); ?><?php echo thegem_get_option('mobile_menu_layout', 'default') == 'global-section' ? ' mobile-menu-layout-slide-horizontal' : ''; ?>" role="banner">
<?php if(thegem_get_option('header_layout') == 'vertical') : ?><button class="vertical-toggle"><?php esc_html_e('Primary Menu', 'thegem'); ?><span class="menu-line-1"></span><span class="menu-line-2"></span><span class="menu-line-3"></span></button><?php endif; ?>
<?php if(!$hide_top_area && (!thegem_get_option('top_area_disable_fixed') || $thegem_header_params['header_transparent'] && $thegem_header_params['header_top_area_transparent']) && thegem_get_option('header_layout') != 'vertical') : ?>
<div class="top-area-background<?php echo thegem_get_option('top_area_disable_fixed') ? ' top-area-scroll-hide' : ''; ?>">
<?php get_template_part('top_area'); ?>
</div>
<?php endif; ?>
<div class="header-background">
<div class="container<?php echo (thegem_get_option('header_layout') != 'vertical' && (thegem_get_option('header_width') == 'full' || thegem_get_option('header_layout') == 'fullwidth_hamburger') ? ' container-fullwidth' : ''); ?>">
<div class="header-main logo-position-<?php echo esc_attr($logo_position); ?><?php echo ($thegem_header_params['header_menu_logo_light'] ? ' header-colors-light' : ''); ?> header-layout-<?php echo esc_attr(thegem_get_option('header_layout')); ?><?php echo esc_attr(thegem_get_option('header_width') == 'full' ? ' header-layout-fullwidth' : ''); ?> header-style-<?php echo esc_attr(thegem_get_option('header_layout') == 'vertical' || thegem_get_option('header_layout') == 'fullwidth_hamburger' ? 'vertical' : thegem_get_option('header_style')); ?><?php if(!((has_nav_menu('primary') || $thegem_header_params['header_custom_menu']) && $thegem_header_params['menu_show'])) { echo ' no-menu'; } ?>">
<?php if($logo_position != 'right') : ?>
<?php do_action('thegem_header_menu_opposite'); ?>
<div class="site-title">
<?php thegem_print_logo($thegem_header_light); ?>
</div>
<?php if((has_nav_menu('primary') || $thegem_header_params['header_custom_menu']) && $thegem_header_params['menu_show']) : ?>
<?php if(thegem_get_option('header_layout') != 'perspective') : ?>
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
<?php do_action('thegem_before_nav_menu'); ?>
<?php if($thegem_header_params['header_custom_menu']) : ?>
<?php wp_nav_menu(array('menu' => $thegem_header_params['header_custom_menu'], 'menu_id' => 'primary-menu', 'menu_class' => apply_filters( 'thegem_nav_menu_class', 'nav-menu styled no-responsive' ), 'container' => false, 'walker' => new TheGem_Mega_Menu_Walker)); ?>
<?php else: ?>
<?php wp_nav_menu(array('theme_location' => 'primary', 'menu_id' => 'primary-menu', 'menu_class' => apply_filters( 'thegem_nav_menu_class', 'nav-menu styled no-responsive' ), 'container' => false, 'walker' => new TheGem_Mega_Menu_Walker)); ?>
<?php endif; ?>
<?php do_action('thegem_after_nav_menu'); ?>
</nav>
<?php else: ?>
<?php do_action('thegem_perspective_menu_buttons'); ?>
<?php endif; ?>
<?php endif; ?>
<?php else : ?>
<?php if((has_nav_menu('primary') || $thegem_header_params['header_custom_menu']) && $thegem_header_params['menu_show']) : ?>
<?php if(thegem_get_option('header_layout') != 'perspective') : ?>
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
<?php do_action('thegem_before_nav_menu'); ?>
<?php if($thegem_header_params['header_custom_menu']) : ?>
<?php wp_nav_menu(array('menu' => $thegem_header_params['header_custom_menu'], 'menu_id' => 'primary-menu', 'menu_class' => apply_filters( 'thegem_nav_menu_class', 'nav-menu styled no-responsive' ), 'container' => false, 'walker' => new TheGem_Mega_Menu_Walker)); ?>
<?php else: ?>
<?php wp_nav_menu(array('theme_location' => 'primary', 'menu_id' => 'primary-menu', 'menu_class' => apply_filters( 'thegem_nav_menu_class', 'nav-menu styled no-responsive' ), 'container' => false, 'walker' => new TheGem_Mega_Menu_Walker)); ?>
<?php endif; ?>
<?php do_action('thegem_after_nav_menu'); ?>
</nav>
<?php else: ?>
<?php do_action('thegem_perspective_menu_buttons'); ?>
<?php endif; ?>
<?php endif; ?>
<div class="site-title">
<?php thegem_print_logo($thegem_header_light); ?>
</div>
<?php do_action('thegem_header_menu_opposite'); ?>
<?php endif; ?>
</div>
</div>
</div>
</header><!-- #site-header -->
<?php if(thegem_get_option('header_layout') == 'vertical') : ?>
<div class="vertical-menu-item-widgets">
<?php
if (!thegem_get_option('hide_search_icon')) {
add_filter('get_search_form', 'thegem_serch_form_vertical_header');
get_search_form();
remove_filter('get_search_form', 'thegem_serch_form_vertical_header');
}
?>
<?php if (thegem_get_option('show_menu_socials')): ?>
<div class="menu-item-socials socials-colored"><?php thegem_print_socials('rounded'); ?></div>
<?php endif; ?>
</div>
<?php endif; ?>
<?php do_action('thegem_header_end'); ?>
</div><!-- #site-header-wrapper -->
<?php endif; ?>
<?php if(!$thegem_effects_params['effects_hide_header'] && $thegem_effects_params['header_source'] == 'builder') :
thegem_header_builder($thegem_header_params);
endif;?>
<div id="main" class="site-main page__top-shadow visible" role="main" aria-label="<?php esc_attr_e('Main', 'thegem'); ?>">