![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/themes/bugster/templates/ |
<?php /** * The template to show mobile header * * @package WordPress * @subpackage BUGSTER * @since BUGSTER 1.0.39 */ // Additional info if ( bugster_is_off( bugster_get_theme_option( 'header_mobile_hide_info' ) ) ) { $bugster_info = bugster_get_theme_option( 'header_mobile_additional_info' ); if ( '' != $bugster_info ) { ?><div class="top_panel_mobile_info sc_layouts_row sc_layouts_row_type_compact sc_layouts_row_delimiter sc_layouts_hide_on_large sc_layouts_hide_on_desktop sc_layouts_hide_on_notebook sc_layouts_hide_on_tablet"> <div class="content_wrap"> <div class="columns_wrap"> <div class="sc_layouts_column sc_layouts_column_align_center sc_layouts_column_icons_position_left column-1_1"><div class="sc_layouts_item"> <?php bugster_show_layout( $bugster_info ); ?> </div><!-- /.sc_layouts_item --> </div><!-- /.sc_layouts_column --> </div><!-- /.columns_wrap --> </div><!-- /.content_wrap --> </div><!-- /.sc_layouts_row --> <?php } } // Logo, menu and buttons ?> <div class="top_panel_mobile_navi sc_layouts_row sc_layouts_row_type_compact sc_layouts_row_delimiter sc_layouts_row_fixed sc_layouts_row_fixed_always sc_layouts_hide_on_large sc_layouts_hide_on_desktop sc_layouts_hide_on_notebook sc_layouts_hide_on_tablet"> <div class="content_wrap"> <div class="columns_wrap columns_fluid"> <div class="sc_layouts_column sc_layouts_column_align_left sc_layouts_column_icons_position_left sc_layouts_column_fluid column-1_3"> <?php // Logo if ( bugster_is_off( bugster_get_theme_option( 'header_mobile_hide_logo' ) ) ) { ?> <div class="sc_layouts_item"> <?php set_query_var( 'bugster_logo_args', array( 'type' => 'mobile_header' ) ); get_template_part( apply_filters( 'bugster_filter_get_template_part', 'templates/header-logo' ) ); set_query_var( 'bugster_logo_args', array() ); ?> </div> <?php } ?> </div><div class="sc_layouts_column sc_layouts_column_align_right sc_layouts_column_icons_position_left sc_layouts_column_fluid column-2_3"> <?php if ( bugster_exists_trx_addons() ) { // Display login/logout if ( bugster_is_off( bugster_get_theme_option( 'header_mobile_hide_login' ) ) ) { ob_start(); do_action( 'bugster_action_login', array( 'text_login' => false, 'text_logout' => false, ) ); $bugster_action_output = ob_get_contents(); ob_end_clean(); if ( ! empty( $bugster_action_output ) ) { ?> <div class="sc_layouts_item sc_layouts_menu sc_layouts_menu_default"> <?php bugster_show_layout( $bugster_action_output ); ?> </div> <?php } } // Display cart button if ( bugster_is_off( bugster_get_theme_option( 'header_mobile_hide_cart' ) ) ) { ob_start(); do_action( 'bugster_action_cart' ); $bugster_action_output = ob_get_contents(); ob_end_clean(); if ( ! empty( $bugster_action_output ) ) { ?> <div class="sc_layouts_item"> <?php bugster_show_layout( $bugster_action_output ); ?> </div> <?php } } // Display search field if ( bugster_is_off( bugster_get_theme_option( 'header_mobile_hide_search' ) ) ) { ob_start(); do_action( 'bugster_action_search', array( 'style' => 'fullscreen', 'class' => 'header_mobile_search', 'ajax' => false ) ); $bugster_action_output = ob_get_contents(); ob_end_clean(); if ( ! empty( $bugster_action_output ) ) { ?> <div class="sc_layouts_item"> <?php bugster_show_layout( $bugster_action_output ); ?> </div> <?php } } } // Mobile menu button ?> <div class="sc_layouts_item"> <div class="sc_layouts_iconed_text sc_layouts_menu_mobile_button"> <a class="sc_layouts_item_link sc_layouts_iconed_text_link" href="#"> <span class="sc_layouts_item_icon sc_layouts_iconed_text_icon trx_addons_icon-menu"></span> </a> </div> </div> </div><!-- /.sc_layouts_column --> </div><!-- /.columns_wrap --> </div><!-- /.content_wrap --> </div><!-- /.sc_layouts_row -->