HEX
Server: LiteSpeed
System: Linux premium260.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: aliazzsr (627)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/aliazzsr/trn2.mesegroup.de/wp-content/themes/best-shop/header.php
<?php
/**
* Theme Header
* This is the template that displays all of the <head> section and everything up until <div id="content">
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
* @package Best_Shop
* DOCTYPE hook 
* @hooked best_shop_doctype
*/
do_action( 'best_shop_doctype' );
?>
<head itemscope itemtype="https://schema.org/WebSite">
<?php 
    /**
     * Before wp_head
     * 
     * @hooked best_shop_head
    */
    do_action( 'best_shop_before_wp_head' );
	wp_head(); 
    ?>
</head>

<body <?php body_class(); ?> itemscope itemtype="https://schema.org/WebPage">
<?php wp_body_open();
    /**
     * Before Header
     * 
     * @hooked best_shop_page_start 
    */
    do_action( 'best_shop_before_header' );

	/**
	 * Header
	 */
    

    $best_shop_header_layout = best_shop_get_header_style();
            
    //if header layout is customizer or empty, get customizer setting
    if ($best_shop_header_layout === 'customizer-setting' || $best_shop_header_layout === '' ) {
        $best_shop_header_layout = best_shop_get_setting('header_layout');
    }
        
    //if woocommerce not installed, set layout to default
    if (!class_exists('WooCommerce') && $best_shop_header_layout === 'woocommerce-bar' ) {
        $best_shop_header_layout = 'default';
    }
    
    ?>
    
		<header id="masthead" class="site-header style-one 
        <?php if ($best_shop_header_layout==='transparent-header') { 
            echo esc_attr($best_shop_header_layout); 
        } if($best_shop_header_layout==='woocommerce-bar'){
            echo esc_attr(" header-no-border "); 
        }
        if ($best_shop_header_layout==='woocommerce-bar'){
            echo esc_attr(' hide-menu-cart ');
        }
                                     
        ?>"
        itemscope itemtype="https://schema.org/WPHeader">
            
            <?php if(best_shop_get_setting('enable_top_bar')): ?>
            
            <div class="top-bar-menu">
                <div class="container">
                    
                    <div class="left-menu">                        
                    <?php
                        
                        if(best_shop_get_setting('top_bar_left_content') === 'menu') {
                            
                            wp_nav_menu( array( 'container_class' => 'top-bar-menu', 
                                                'theme_location'  =>  'top-bar-left-menu', 
                                                'depth' =>  1,
                                            ) );
                            
                        } elseif(best_shop_get_setting('top_bar_left_content') === 'contacts'){
                        ?><ul>
                        <?php if (best_shop_get_setting('phone_number')!=''): ?>
                        <li><?php echo esc_html(best_shop_get_setting('phone_title')).esc_html(best_shop_get_setting('phone_number')) ; ?></li>
                        <?php endif; ?>  
                        
                        <?php if (best_shop_get_setting('address')!=''): ?>
                        <li><?php echo esc_html(best_shop_get_setting('address_title')).esc_html(best_shop_get_setting('address')) ; ?></li>
                        <?php endif; ?> 
                        
                        <?php if (best_shop_get_setting('mail_description')!=''): ?>
                        <li><?php echo esc_html(best_shop_get_setting('mail_title')).esc_html(best_shop_get_setting('mail_description')) ; ?></li>
                        <?php endif; ?>   
                        
                        </ul><?php
                        } elseif(best_shop_get_setting('top_bar_left_content') === 'text')  {
                            ?><ul><li><?php echo esc_html((best_shop_get_setting('top_bar_left_text')) ); ?></li></ul><?php    
                        }


                    ?>                      
                    </div>
                    
                    <div class="right-menu">
                    <?php
                     if(best_shop_get_setting('top_bar_right_content') === 'menu') {
                      wp_nav_menu( array( 'container_class' => 'top-bar-menu', 
                                        'theme_location' =>  'top-bar-right-menu', 
                                        'depth' =>  1,
                                      ) );                         
                     } elseif(best_shop_get_setting('top_bar_right_content') === 'social'){
                         
                         best_shop_social_links( true );
                         
                     } elseif(best_shop_get_setting('top_bar_right_content') === 'menu_social'){
                         
                       wp_nav_menu( array( 'container_class' => 'top-bar-menu', 
                                        'theme_location' =>  'top-bar-right-menu', 
                                        'depth' =>  1,
                                      ) );
                         
                        best_shop_social_links( true );
                         
                     } 

                    ?>
                    </div>
                    
                </div>
            </div>
            
            <?php endif; /* end top bar*/ ?> 
                         
			<div class=" <?php if(best_shop_get_setting('menu_layout') === 'default' ) { echo 'main-menu-wrap'; } else { echo 'burger-banner'; } ?> ">
                <div class="container">
				<div class="header-wrapper">
					<?php 
					/**
					 * Site Branding 
					*/
					best_shop_site_branding();           
					?>
					<div class="nav-wrap">
                        <?php if(best_shop_get_setting('menu_layout') === 'default' ) { ?>
						<div class="header-left">
							<?php 
							/**
							 * Primary navigation 
							*/
							best_shop_primary_navigation(); 
							?>
						</div>
						<div class="header-right">
							<?php
							/**
							 * Header Search 
							*/ 
							best_shop_header_search();
							?>
						</div>
                        <?php } else { ?>
                        <div class="banner header-right media-image-news">
                            <?php the_widget( 'WP_Widget_Media_Image', 'url='.best_shop_get_setting('header_banner_img')); ?>
                            <?php echo wp_kses_post(do_shortcode(best_shop_get_setting('header_shortcode'))); ?>
                        </div>
                        <?php } ?>
                        
					</div><!-- #site-navigation -->
				</div>
                </div>
			</div>
            
            <?php
            if(best_shop_get_setting('menu_layout') === 'full_width' ) {
            ?>
            
            <!--Burger header-->
            <div class="burger main-menu-wrap">
            <div class="container">
            <div class="header-wrapper">
            <div class="nav-wrap">
                <div class="header-left">
                    <?php 
                    /**
                     * Primary navigation 
                    */
                    best_shop_primary_navigation(); 
                    ?>
                </div>
                <div class="header-right">
                    <?php
                    /**
                     * Header Search 
                    */ 
                    best_shop_header_search();
                    ?>
                </div>
            </div>
            </div>
            </div>
            </div>
            <!-- #site-navigation -->            
            
			<?php
            }
                
			/**
			 * Mobile navigation
			 */
			best_shop_mobile_navigation(); 
			


        if (class_exists('WooCommerce') && $best_shop_header_layout === 'woocommerce-bar') { 
        ?>
            <div class="woocommerce-bar">
            <nav>
            <div class="container"> 
            <?php
            best_shop_product_category_list();
            
            $best_shop_woo_ajax_search_code = trim((best_shop_get_setting('woo_ajax_search_code')));
            if($best_shop_woo_ajax_search_code !== '') {
                echo do_shortcode((wp_kses_post($best_shop_woo_ajax_search_code)));                
            } else {
                best_shop_product_search();
            }
                best_shop_cart_wishlist_myacc();    
            ?>           
            </div>
            </nav> 
            </div>
        <?php 

        }
            
        ?>
            
		</header><!-- #masthead -->
    

     <?php
    
    /**
	 * * @hooked best_shop_primary_page_header - 10
	*/
	do_action( 'best_shop_before_posts_content' );