| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/plugins/clever-fox/inc/metasoft/sections/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if ( ! function_exists( 'metasoft_above_header' ) ) :
function metasoft_above_header() {
$metasoft_hdr_top_hs = get_theme_mod('hdr_top_hs','1');
if($metasoft_hdr_top_hs == '1') { ?>
<div id="above-header" class="above-header d-lg-block d-none wow fadeInDown">
<div class="header-widget d-flex align-items-center">
<div class="container">
<div class="row">
<?php
$metasoft_abv_hdr_link_hs = get_theme_mod('abv_hdr_link_hs','1');
$metasoft_abv_hdr_lbl1 = get_theme_mod( 'abv_hdr_lbl1',__('careers','clever-fox'));
$metasoft_abv_hdr_url1 = get_theme_mod( 'abv_hdr_url1');
$metasoft_abv_hdr_lbl2 = get_theme_mod( 'abv_hdr_lbl2',__('help desk','clever-fox'));
$metasoft_abv_hdr_url2 = get_theme_mod( 'abv_hdr_url2');
$metasoft_abv_hdr_lbl3 = get_theme_mod( 'abv_hdr_lbl3',__('login','clever-fox'));
$metasoft_abv_hdr_url3 = get_theme_mod( 'abv_hdr_url3');
$metasoft_hide_show_social_icon = get_theme_mod( 'hide_show_social_icon','1');
$metasoft_social_icons = get_theme_mod( 'social_icons',metasoft_get_social_icon_default());
?>
<div class="col-lg-6 col-12 mb-lg-0 mb-4">
<div id="header-above-left" class="widget-left text-lg-left text-center">
<?php if($metasoft_abv_hdr_link_hs == '1') { ?>
<div class="widget widget_help_desk">
<ul>
<?php if(!empty($metasoft_abv_hdr_lbl1)): ?>
<li class="link1"><a href="<?php echo esc_html($metasoft_abv_hdr_url1); ?>"><?php echo esc_html($metasoft_abv_hdr_lbl1); ?></a></li>
<?php endif; ?>
<?php if(!empty($metasoft_abv_hdr_lbl2)): ?>
<li class="link2"><a href="<?php echo esc_html($metasoft_abv_hdr_url2); ?>"><?php echo esc_html($metasoft_abv_hdr_lbl2); ?></a></li>
<?php endif; ?>
<?php if(!empty($metasoft_abv_hdr_lbl3)): ?>
<li class="link3"><a href="<?php echo esc_html($metasoft_abv_hdr_url3); ?>"><?php echo esc_html($metasoft_abv_hdr_lbl3); ?></a></li>
<?php endif; ?>
</ul>
</div>
<?php } ?>
<?php if($metasoft_hide_show_social_icon == '1') { ?>
<div class="widget widget_social_widget">
<ul>
<?php
$metasoft_social_icons = json_decode($metasoft_social_icons);
if( $metasoft_social_icons!='' )
{
foreach($metasoft_social_icons as $metasoft_social_item){
$metasoft_repeater_social_icon = ! empty( $metasoft_social_item->icon_value ) ? apply_filters( 'metasoft_translate_single_string', $metasoft_social_item->icon_value, 'Header section' ) : '';
$metasoft_repeater_social_link = ! empty( $metasoft_social_item->link ) ? apply_filters( 'metasoft_translate_single_string', $metasoft_social_item->link, 'Header section' ) : '';
?>
<li><a href="<?php echo esc_url( $metasoft_repeater_social_link ); ?>" class="linkedin"><i class="fa <?php echo esc_attr( $metasoft_repeater_social_icon ); ?>"></i></a></li>
<?php }} ?>
</ul>
</div>
<?php } ?>
</div>
</div>
<div class="col-lg-6 col-12 mb-lg-0 mb-4">
<div id="header-above-right" class="widget-right justify-content-lg-end justify-content-center text-lg-right text-center">
<?php
$metasoft_hide_show_cntct_details = get_theme_mod( 'hide_show_cntct_details','1');
$metasoft_tlh_contct_icon = get_theme_mod( 'tlh_contct_icon','fa-clock-o');
$metasoft_tlh_contact_title = get_theme_mod( 'tlh_contact_title',__('Mon to Fri 9:00am to 6:00pm','clever-fox'));
?>
<?php if($metasoft_hide_show_cntct_details == '1') { ?>
<aside class="widget widget-contact wgt-1">
<div class="contact-area">
<div class="contact-icon">
<div class="contact-corn"><i class="fa <?php echo esc_attr($metasoft_tlh_contct_icon); ?>"></i></div>
</div>
<div class="contact-info">
<p class="text"><?php echo esc_html($metasoft_tlh_contact_title); ?></p>
</div>
</div>
</aside>
<?php } ?>
<?php
$metasoft_hide_show_email_details = get_theme_mod( 'hide_show_email_details','1');
$metasoft_tlh_email_icon = get_theme_mod( 'tlh_email_icon','fa-envelope-o');
$metasoft_tlh_email_title = get_theme_mod( 'tlh_email_title',__('email@companyname.com','clever-fox'));
?>
<?php if($metasoft_hide_show_email_details == '1') { ?>
<aside class="widget widget-contact wgt-2">
<div class="contact-area">
<div class="contact-icon">
<div class="contact-corn"><i class="fa <?php echo esc_attr($metasoft_tlh_email_icon); ?>"></i></div>
</div>
<div class="contact-info">
<p class="text"><?php echo esc_html($metasoft_tlh_email_title); ?></p>
</div>
</div>
</aside>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php }
} endif;
add_action('metasoft_above_header', 'metasoft_above_header');