File: /homepages/35/d967185540/htdocs/clickandbuilds/GMS26/wp-content/themes/thegem/footer.php
<?php
/**
* The template for displaying the footer
*/
$id = is_singular() ? get_the_ID() : 0;
$thegem_shop_page = 0;
if(is_404() && get_post(thegem_get_option('404_page'))) {
$id = thegem_get_option('404_page');
}
if(is_post_type_archive('product') && function_exists('wc_get_page_id')) {
$id = wc_get_page_id('shop');
$thegem_shop_page = 1;
}
$effects_params = $header_params = thegem_get_output_page_settings($id);
if((is_archive() || is_home()) && !$thegem_shop_page && !is_post_type_archive('tribe_events')) {
if(is_tax('product_cat') || is_tax('product_tag')) {
$effects_params = $header_params = thegem_get_output_page_settings(0, thegem_theme_options_get_page_settings('product_categories'), 'product_category');
} else {
$effects_params = $header_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;
if(get_term_meta($thegem_term_id , 'thegem_taxonomy_custom_page_options', true)) {
$effects_params = $header_params = thegem_get_output_page_settings($thegem_term_id, array(), 'term');
}
}
if(is_search()) {
$effects_params = $header_params = thegem_get_output_page_settings(0, thegem_theme_options_get_page_settings('search'), 'search');
}
if($effects_params['effects_parallax_footer']) {
wp_enqueue_script('thegem-parallax-footer');
}
?>
</div><!-- #main -->
<div id="lazy-loading-point"></div>
<?php if (!$effects_params['effects_hide_footer']) : ?>
<?php if ($effects_params['effects_parallax_footer']) : ?><div class="parallax-footer"><?php endif; ?>
<?php
if ($header_params['footer_custom'] && $header_params['footer_custom_show']) {
$thegem_custom_footer = get_post($header_params['footer_custom']);
$thegem_q = new WP_Query(array('p' => $header_params['footer_custom'], 'post_type' => array('thegem_footer', 'thegem_templates'), 'post_status' => array('publish', 'private')));
}
if ($header_params['footer_custom'] && $header_params['footer_custom_show'] && $thegem_custom_footer && $thegem_q->have_posts()) : $thegem_q->the_post(); ?>
<footer class="custom-footer<?php echo (function_exists('vc_is_page_editable') && vc_is_page_editable() ? ' frontent-edit-footer': ''); ?>">
<?php if(function_exists('vc_is_page_editable') && vc_is_page_editable()) : ?>
<div class="edit-template-overlay">
<div class="buttons">
<a href="<?php echo apply_filters( 'vc_get_inline_url', admin_url('post.php?vc_action=vc_inline&post_id='.$thegem_custom_footer->ID.'&post_type=thegem_footer')); ?>" target="_blank"><?php _e('Edit Footer Template ', 'thegem'); ?></a>
<?php /*<a href="#" target="_blank" class="doc">?</a>*/ ?>
</div>
</div>
<?php echo do_shortcode($thegem_custom_footer->post_content); ?>
<?php else : ?>
<div class="container"><?php the_content(); ?></div>
<?php endif; ?>
</footer>
<?php wp_reset_postdata(); endif; ?>
<?php if (is_active_sidebar('footer-widget-area') && !$header_params['footer_hide_widget_area']) : ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="container">
<?php get_sidebar('footer'); ?>
</div>
</footer><!-- #colophon -->
<?php endif; ?>
<?php if(!$header_params['footer_hide_default']) : ?>
<footer id="footer-nav" class="site-footer">
<div class="container"><div class="row">
<div class="col-md-3 col-md-push-9">
<?php
$socials_icons = array();
$thegem_socials_icons = thegem_socials_icons_list();
foreach(array_keys($thegem_socials_icons) as $icon) {
$socials_icons[$icon] = thegem_get_option($icon.'_active');
thegem_additionals_socials_enqueue_style($icon);
}
if(in_array(1, $socials_icons)) : ?>
<div id="footer-socials"><div class="socials inline-inside socials-colored<?php echo (thegem_get_option('socials_colors_footer') ? '-hover' : ''); ?>">
<?php foreach($socials_icons as $name => $active) : ?>
<?php if($active) : ?>
<a href="<?php echo esc_url(thegem_get_option($name . '_link')); ?>" target="_blank" title="<?php echo esc_attr($thegem_socials_icons[$name]); ?>" class="socials-item"><i class="socials-item-icon <?php echo esc_attr($name); ?>"></i></a>
<?php endif; ?>
<?php endforeach; ?>
<?php do_action('thegem_footer_socials'); ?>
</div></div><!-- #footer-socials -->
<?php endif; ?>
</div>
<div class="col-md-6">
<?php if(has_nav_menu('footer')) : ?>
<nav id="footer-navigation" class="site-navigation footer-navigation centered-box" role="navigation">
<?php wp_nav_menu(array('theme_location' => 'footer', 'menu_id' => 'footer-menu', 'menu_class' => 'nav-menu styled clearfix inline-inside', 'container' => false, 'depth' => 1, 'walker' => new thegem_walker_footer_nav_menu)); ?>
</nav>
<?php endif; ?>
</div>
<div class="col-md-3 col-md-pull-9"><div class="footer-site-info"><?php echo wp_kses_post(do_shortcode(nl2br(stripslashes(thegem_get_option('footer_html'))))); ?></div></div>
</div></div>
</footer><!-- #footer-nav -->
<?php endif; ?>
<?php if($effects_params['effects_parallax_footer']) : ?></div><!-- .parallax-footer --><?php endif; ?>
<?php endif; ?>
</div><!-- #page -->
<?php if(thegem_get_option('header_layout') == 'perspective') : ?>
</div><!-- #perspective -->
<?php endif; ?>
<?php wp_footer(); ?>
</body>
</html>