| 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/avril/features/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function avril_lite_header_settings( $wp_customize ) {
$selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' : 'refresh';
/*=========================================
Header Settings Panel
=========================================*/
$wp_customize->add_panel(
'header_section',
array(
'priority' => 2,
'capability' => 'edit_theme_options',
'title' => __('Header', 'clever-fox'),
)
);
/*=========================================
Avril Site Identity
=========================================*/
// Logo Width //
if ( class_exists( 'Cleverfox_Customizer_Range_Slider_Control' ) ) {
$wp_customize->add_setting(
'logo_width',
array(
'default' => '140',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_range_value',
'transport' => 'postMessage',
)
);
$wp_customize->add_control(
new Cleverfox_Customizer_Range_Slider_Control( $wp_customize, 'logo_width',
array(
'label' => __( 'Logo Width', 'clever-fox' ),
'section' => 'title_tagline',
'input_attrs' => array(
'min' => 0,
'max' => 500,
'step' => 1,
//'suffix' => 'px', //optional suffix
),
) )
);
}
/*=========================================
Above Header Section
=========================================*/
$wp_customize->add_section(
'above_header',
array(
'priority' => 2,
'title' => __('Above Header','clever-fox'),
'panel' => 'header_section',
)
);
// Social
$wp_customize->add_setting(
'hdr_top_social'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_text',
'priority' => 1,
)
);
$wp_customize->add_control(
'hdr_top_social',
array(
'type' => 'hidden',
'label' => __('Social Icons','clever-fox'),
'section' => 'above_header',
)
);
$wp_customize->add_setting(
'hide_show_social_icon' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_checkbox',
'transport' => $selective_refresh,
'priority' => 1,
)
);
$wp_customize->add_control(
'hide_show_social_icon',
array(
'label' => esc_html__( 'Hide/Show', 'clever-fox' ),
'section' => 'above_header',
'type' => 'checkbox'
)
);
/**
* Customizer Repeater
*/
$wp_customize->add_setting( 'social_icons',
array(
'sanitize_callback' => 'avril_repeater_sanitize',
'priority' => 2,
'default' => avril_get_social_icon_default()
)
);
$wp_customize->add_control(
new AVRIL_Repeater( $wp_customize,
'social_icons',
array(
'label' => esc_html__('Social Icons','clever-fox'),
'section' => 'above_header',
'add_field_label' => esc_html__( 'Add New Social', 'clever-fox' ),
'item_name' => esc_html__( 'Social', 'clever-fox' ),
'customizer_repeater_icon_control' => true,
'customizer_repeater_link_control' => true,
)
)
);
//Pro feature
class Avril_social__section_upgrade extends WP_Customize_Control {
public function render_content() {
$cleverfox_theme = wp_get_theme(); // gets the current theme
if ( 'Aera' == $cleverfox_theme->name){
?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/aera-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php }elseif ( 'Avail' == $cleverfox_theme->name){ ?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/avail-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php }elseif ( 'Axtia' == $cleverfox_theme->name){ ?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/axtia-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php }elseif ( 'Avtari' == $cleverfox_theme->name){ ?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/avtari-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php }elseif ( 'Avitech' == $cleverfox_theme->name){ ?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/avitech-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php }elseif ( 'Ampark' == $cleverfox_theme->name){ ?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/ampark-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php }elseif ( 'Varuda' == $cleverfox_theme->name){ ?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/varuda-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php }elseif ( 'Axivo' == $cleverfox_theme->name){ ?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/axivo-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php
}else{
?>
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/avril-pro/" target="_blank" style="display: none;"><?php esc_html_e('Upgrade to Pro','clever-fox'); ?></a>
<?php
}
}
}
$wp_customize->add_setting( 'avril_social_upgrade_to_pro', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_filter_nohtml_kses',
));
$wp_customize->add_control(
new Avril_social__section_upgrade(
$wp_customize,
'avril_social_upgrade_to_pro',
array(
'section' => 'above_header',
'settings' => 'avril_social_upgrade_to_pro',
)
)
);
// Mobile
$wp_customize->add_setting(
'hdr_top_mbl'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_text',
'priority' => 1,
)
);
$wp_customize->add_control(
'hdr_top_mbl',
array(
'type' => 'hidden',
'label' => __('Phone','clever-fox'),
'section' => 'above_header',
)
);
$wp_customize->add_setting(
'hide_show_mbl_details' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_checkbox',
'transport' => $selective_refresh,
'priority' => 2,
)
);
$wp_customize->add_control(
'hide_show_mbl_details',
array(
'label' => esc_html__( 'Hide/Show', 'clever-fox' ),
'section' => 'above_header',
'type' => 'checkbox'
)
);
// icon //
$wp_customize->add_setting(
'tlh_mobile_icon',
array(
'default' => 'fa-map-marker',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
)
);
$wp_customize->add_control(new Avril_Icon_Picker_Control($wp_customize,
'tlh_mobile_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'above_header',
'iconset' => 'fa',
))
);
// Mobile title //
$wp_customize->add_setting(
'tlh_mobile_title',
array(
'default' => __('Online 24x7','clever-fox'),
'sanitize_callback' => 'avril_sanitize_text',
'transport' => $selective_refresh,
'capability' => 'edit_theme_options',
'priority' => 3,
)
);
$wp_customize->add_control(
'tlh_mobile_title',
array(
'label' => __('Title','clever-fox'),
'section' => 'above_header',
'type' => 'text'
)
);
// Mobile subtitle //
$wp_customize->add_setting(
'tlh_mobile_sbtitle',
array(
'default' => __('+1-0120-400-00-00','clever-fox'),
'sanitize_callback' => 'avril_sanitize_text',
'capability' => 'edit_theme_options',
'transport' => $selective_refresh,
'priority' => 4,
)
);
$wp_customize->add_control(
'tlh_mobile_sbtitle',
array(
'label' => __('Subtitle','clever-fox'),
'section' => 'above_header',
'type' => 'text'
)
);
// Mobile
$wp_customize->add_setting(
'hdr_top_email'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_text',
'priority' => 5,
)
);
$wp_customize->add_control(
'hdr_top_email',
array(
'type' => 'hidden',
'label' => __('Email','clever-fox'),
'section' => 'above_header',
)
);
$wp_customize->add_setting(
'hide_show_email_details' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_checkbox',
'transport' => $selective_refresh,
'priority' => 6,
)
);
$wp_customize->add_control(
'hide_show_email_details',
array(
'label' => esc_html__( 'Hide/Show', 'clever-fox' ),
'section' => 'above_header',
'type' => 'checkbox'
)
);
// icon //
$wp_customize->add_setting(
'tlh_email_icon',
array(
'default' => 'fa-phone',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
)
);
$wp_customize->add_control(new Avril_Icon_Picker_Control($wp_customize,
'tlh_email_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'above_header',
'iconset' => 'fa',
))
);
// Mobile title //
$wp_customize->add_setting(
'tlh_email_title',
array(
'default' => __('Email Us','clever-fox'),
'sanitize_callback' => 'avril_sanitize_text',
'capability' => 'edit_theme_options',
'transport' => $selective_refresh,
'priority' => 7,
)
);
$wp_customize->add_control(
'tlh_email_title',
array(
'label' => __('Title','clever-fox'),
'section' => 'above_header',
'type' => 'text'
)
);
// Mobile subtitle //
$wp_customize->add_setting(
'tlh_email_sbtitle',
array(
'default' => __('email@email.com','clever-fox'),
'sanitize_callback' => 'avril_sanitize_text',
'transport' => $selective_refresh,
'capability' => 'edit_theme_options',
'priority' => 8,
)
);
$wp_customize->add_control(
'tlh_email_sbtitle',
array(
'label' => __('Subtitle','clever-fox'),
'section' => 'above_header',
'type' => 'text'
)
);
// Contact
$wp_customize->add_setting(
'hdr_top_contact'
,array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_text',
'priority' => 9,
)
);
$wp_customize->add_control(
'hdr_top_contact',
array(
'type' => 'hidden',
'label' => __('Contact','clever-fox'),
'section' => 'above_header',
)
);
$wp_customize->add_setting(
'hide_show_cntct_details' ,
array(
'default' => '1',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'avril_sanitize_checkbox',
'transport' => $selective_refresh,
'priority' => 10,
)
);
$wp_customize->add_control(
'hide_show_cntct_details',
array(
'label' => esc_html__( 'Hide/Show', 'clever-fox' ),
'section' => 'above_header',
'type' => 'checkbox'
)
);
// icon //
$wp_customize->add_setting(
'tlh_contct_icon',
array(
'default' => 'fa-clock-o',
'sanitize_callback' => 'sanitize_text_field',
'capability' => 'edit_theme_options',
)
);
$wp_customize->add_control(new Avril_Icon_Picker_Control($wp_customize,
'tlh_contct_icon',
array(
'label' => __('Icon','clever-fox'),
'section' => 'above_header',
'iconset' => 'fa',
))
);
// Mobile title //
$wp_customize->add_setting(
'tlh_contact_title',
array(
'default' => __('8:00AM - 6:00PM','clever-fox'),
'sanitize_callback' => 'avril_sanitize_text',
'transport' => $selective_refresh,
'capability' => 'edit_theme_options',
'priority' => 11,
)
);
$wp_customize->add_control(
'tlh_contact_title',
array(
'label' => __('Title','clever-fox'),
'section' => 'above_header',
'type' => 'text'
)
);
// Mobile subtitle //
$wp_customize->add_setting(
'tlh_contact_sbtitle',
array(
'default' => __('Monday to Saturday','clever-fox'),
'sanitize_callback' => 'avril_sanitize_text',
'transport' => $selective_refresh,
'capability' => 'edit_theme_options',
'priority' => 12,
)
);
$wp_customize->add_control(
'tlh_contact_sbtitle',
array(
'label' => __('Subtitle','clever-fox'),
'section' => 'above_header',
'type' => 'text'
)
);
}
add_action( 'customize_register', 'avril_lite_header_settings' );
// Header selective refresh
function avril_lite_header_partials( $wp_customize ){
// hide show Social
$wp_customize->selective_refresh->add_partial(
'hide_show_social_icon', array(
'selector' => '#above-header .widget_social_widget',
'container_inclusive' => true,
'render_callback' => 'header_top_right',
'fallback_refresh' => true,
)
);
// hide_show_cntct_details
$wp_customize->selective_refresh->add_partial(
'hide_show_cntct_details', array(
'selector' => '#above-header .wgt-1',
'container_inclusive' => true,
'render_callback' => 'header_top_right',
'fallback_refresh' => true,
)
);
// hide_show_email_details
$wp_customize->selective_refresh->add_partial(
'hide_show_email_details', array(
'selector' => '#above-header .wgt-2',
'container_inclusive' => true,
'render_callback' => 'header_top_right',
'fallback_refresh' => true,
)
);
// hide_show_mbl_details
$wp_customize->selective_refresh->add_partial(
'hide_show_mbl_details', array(
'selector' => '#above-header .wgt-3',
'container_inclusive' => true,
'render_callback' => 'header_top_left',
'fallback_refresh' => true,
)
);
// tlh_mobile_title
$wp_customize->selective_refresh->add_partial( 'tlh_mobile_title', array(
'selector' => '#above-header .wgt-3 .text',
'settings' => 'tlh_mobile_title',
'render_callback' => 'avril_tlh_mobile_title_render_callback',
) );
// tlh_mobile_sbtitle
$wp_customize->selective_refresh->add_partial( 'tlh_mobile_sbtitle', array(
'selector' => '#above-header .wgt-3 .title',
'settings' => 'tlh_mobile_sbtitle',
'render_callback' => 'avril_tlh_mobile_sbtitle_render_callback',
) );
// tlh_email_title
$wp_customize->selective_refresh->add_partial( 'tlh_email_title', array(
'selector' => '#above-header .wgt-2 .text',
'settings' => 'tlh_email_title',
'render_callback' => 'avril_tlh_email_title_render_callback',
) );
// tlh_email_sbtitle
$wp_customize->selective_refresh->add_partial( 'tlh_email_sbtitle', array(
'selector' => '#above-header .wgt-2 .title',
'settings' => 'tlh_email_sbtitle',
'render_callback' => 'avril_tlh_email_sbtitle_render_callback',
) );
// tlh_contact_title
$wp_customize->selective_refresh->add_partial( 'tlh_contact_title', array(
'selector' => '#above-header .wgt-1 .text',
'settings' => 'tlh_contact_title',
'render_callback' => 'avril_tlh_contact_title_render_callback',
) );
// tlh_contact_sbtitle
$wp_customize->selective_refresh->add_partial( 'tlh_contact_sbtitle', array(
'selector' => '#above-header .wgt-1 .title',
'settings' => 'tlh_contact_sbtitle',
'render_callback' => 'avril_tlh_contact_sbtitle_render_callback',
) );
}
add_action( 'customize_register', 'avril_lite_header_partials' );
// tlh_mobile_title
function avril_tlh_mobile_title_render_callback() {
return get_theme_mod( 'tlh_mobile_title' );
}
// tlh_mobile_sbtitle
function avril_tlh_mobile_sbtitle_render_callback() {
return get_theme_mod( 'tlh_mobile_sbtitle' );
}
// tlh_email_title
function avril_tlh_email_title_render_callback() {
return get_theme_mod( 'tlh_email_title' );
}
// tlh_email_sbtitle
function avril_tlh_email_sbtitle_render_callback() {
return get_theme_mod( 'tlh_email_sbtitle' );
}
// tlh_contact_title
function avril_tlh_contact_title_render_callback() {
return get_theme_mod( 'tlh_contact_title' );
}
// tlh_contact_sbtitle
function avril_tlh_contact_sbtitle_render_callback() {
return get_theme_mod( 'tlh_contact_sbtitle' );
}