File: /home/circuix/www/wp-content/themes/estore/header.php
<?php
/**
* The header for our theme.
*
* This is the template that displays all of the <head> section and everything up until </header>
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package ThemeGrill
* @subpackage eStore
* @since eStore 0.1
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
/**
* WordPress function to load custom scripts after body.
*
* Introduced in WordPress 5.2.0
*
* @since eStore 1.3.9
*/
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
}
?>
<?php do_action( 'tg_before' ); ?>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'estore' ); ?></a>
<?php do_action( 'estore_before_header' ); ?>
<?php if ( get_theme_mod( 'estore_header_media_placement', 'header_media_below_main_menu' ) == 'header_media_above_site_title' ) {
estore_the_custom_header_markup();
} ?>
<header id="masthead" class="site-header" role="banner">
<?php if ( get_theme_mod( 'estore_bar_activation' ) == '1' ) : ?>
<div class="top-header-wrapper clearfix">
<div class="tg-container">
<div class="left-top-header">
<div id="header-ticker" class="left-header-block">
<?php
$header_bar_text = get_theme_mod( 'estore_bar_text' );
echo wp_kses_post( $header_bar_text );
?>
</div> <!-- header-ticker end-->
</div> <!-- left-top-header end -->
<div class="right-top-header">
<div class="top-header-menu-wrapper">
<?php wp_nav_menu(
array(
'theme_location' => 'header',
'menu_id' => 'header-menu',
'fallback_cb' => false,
)
);
?>
</div> <!-- top-header-menu-wrapper end -->
<?php
if ( class_exists( 'woocommerce' ) ):
if ( get_theme_mod( 'estore_header_ac_btn', '' ) == '1' ):
?>
<div class="login-register-wrap right-header-block">
<?php if ( is_user_logged_in() ) { ?>
<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>"
title="<?php esc_attr__( 'My Account', 'estore' ); ?>"
class="user-icon"><?php esc_html_e( 'My Account', 'estore' ); ?></a>
<?php } else { ?>
<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>"
title="<?php esc_attr__( 'Login/Register', 'estore' ); ?>"
class="user-icon"><?php esc_html_e( 'Login/ Register', 'estore' ); ?>
<?php } ?>
</div>
<?php endif;
if ( get_theme_mod( 'estore_header_currency', '' ) == '1' ):
?>
<div class="currency-wrap right-header-block">
<a href="#"><?php echo esc_html( get_woocommerce_currency() ); ?><?php echo "(" . esc_html( get_woocommerce_currency_symbol() ) . ")"; ?></a>
</div> <!--currency-wrap end -->
<?php endif; // header currency check
?>
<?php
if ( function_exists( 'icl_object_id' ) ) {
if ( get_theme_mod( 'estore_header_lang' ) == 1 ) {
do_action( 'wpml_add_language_selector' );
}
}
endif; // woocommerce check
?>
</div>
</div>
</div>
<?php endif; ?>
<div class="middle-header-wrapper clearfix">
<div class="tg-container">
<div class="logo-wrapper clearfix">
<?php if ( ( get_theme_mod( 'estore_logo_placement', 'header_text_only' ) == 'show_both' || get_theme_mod( 'estore_logo_placement', 'header_text_only' ) == 'header_logo_only' ) ) {
if ( function_exists( 'the_custom_logo' ) && has_custom_logo( $blog_id = 0 ) ) {
estore_the_custom_logo();
}
} // Checks for logo appearance
$screen_reader = 'with-logo-text';
if ( get_theme_mod( 'estore_logo_placement', 'header_text_only' ) == 'header_logo_only' || get_theme_mod( 'estore_logo_placement', 'header_text_only' ) == 'disable' ) {
$screen_reader = 'screen-reader-text';
}
?>
<div class="site-title-wrapper <?php echo $screen_reader; ?>">
<?php if ( is_front_page() || is_home() ) : ?>
<h1 id="site-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"
title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"
rel="home"><?php bloginfo( 'name' ); ?></a>
</h1>
<?php else : ?>
<h3 id="site-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"
title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"
rel="home"><?php bloginfo( 'name' ); ?></a>
</h3>
<?php endif;
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p id="site-description"><?php echo $description; ?></p>
<?php endif; ?>
</div>
</div><!-- logo-end-->
<div class="wishlist-cart-wrapper clearfix">
<?php
if ( function_exists( 'YITH_WCWL' ) ) {
$wishlist_url = YITH_WCWL()->get_wishlist_url();
?>
<div class="wishlist-wrapper">
<a class="quick-wishlist" href="<?php echo esc_url( $wishlist_url ); ?>" title="Wishlist">
<i class="fa fa-heart"></i>
<span class="wishlist-value"><?php echo absint( yith_wcwl_count_products() ); ?></span>
</a>
</div>
<?php
}
if ( class_exists( 'woocommerce' ) ) : ?>
<div class="cart-wrapper">
<div class="estore-cart-views">
<?php $cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url(); ?>
<a href="<?php echo esc_url( $cart_url ); ?>" class="wcmenucart-contents">
<i class="fa fa-shopping-cart"></i>
<span class="cart-value"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() ); ?></span>
</a> <!-- quick wishlist end -->
<div class="my-cart-wrap">
<div class="my-cart"><?php esc_html_e( 'Total', 'estore' ); ?></div>
<div class="cart-total"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></div>
</div>
</div>
<?php the_widget( 'WC_Widget_Cart', '' ); ?>
</div>
<?php endif; ?>
</div>
<?php get_sidebar( 'header' ); ?>
</div>
</div> <!-- middle-header-wrapper end -->
<div class="bottom-header-wrapper clearfix">
<div class="tg-container">
<?php
$menu_location = 'secondary';
$menu_locations = get_nav_menu_locations();
$menu_object = ( isset( $menu_locations[ $menu_location ] ) ? wp_get_nav_menu_object( $menu_locations[ $menu_location ] ) : null );
$menu_name = ( isset( $menu_object->name ) ? $menu_object->name : '' );
if ( has_nav_menu( $menu_location ) ) {
?>
<div class="category-menu">
<div class="category-toggle">
<?php echo esc_html( $menu_name ); ?><i class="fa fa-navicon"> </i>
</div>
<nav id="category-navigation" class="category-menu-wrapper hide" role="navigation">
<?php wp_nav_menu(
array(
'theme_location' => 'secondary',
'menu_id' => 'category-menu',
'fallback_cb' => 'false',
)
);
?>
</nav>
</div>
<?php } ?>
<div class="search-user-wrapper clearfix">
<?php estore_header_search_box(); ?>
<div class="user-wrapper search-user-block">
<?php if ( is_user_logged_in() ) { ?>
<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>"
title="<?php esc_attr__( 'My Account', 'estore' ); ?>" class="user-icon"><i
class="fa fa-user"></i></a>
<?php } else { ?>
<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>"
title="<?php esc_attr__( 'Login / Register', 'estore' ); ?>" class="user-icon"><i
class="fa fa-user-times"></i></a>
<?php } ?>
</div>
</div> <!-- search-user-wrapper -->
<nav id="site-navigation" class="main-navigation" role="navigation">
<div class="toggle-wrap"><span class="toggle"><i class="fa fa-reorder"> </i></span></div>
<?php wp_nav_menu(
array(
'theme_location' => 'primary',
'menu_id' => 'primary-menu',
)
);
?>
</nav><!-- #site-navigation -->
</div>
</div> <!-- bottom-header.wrapper end -->
</header>
<?php if ( get_theme_mod( 'estore_header_media_placement', 'header_media_below_main_menu' ) == 'header_media_below_main_menu' ) {
estore_the_custom_header_markup();
} ?>
<?php do_action( 'estore_after_header' ); ?>
<?php do_action( 'estore_before_main' ); ?>