| 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/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
if( ! function_exists( 'cleverfox_avril_dynamic_styles' ) ):
function cleverfox_avril_dynamic_styles() {
$output_css = '';
/**
* Logo Width
*/
$logo_width = get_theme_mod('logo_width','140');
if($logo_width !== '') {
$output_css .=".logo img, .mobile-logo img {
max-width: " .esc_attr($logo_width). "px;
}\n";
}
/**
* Typography Body
*/
$avril_body_text_transform = get_theme_mod('avril_body_text_transform','inherit');
$avril_body_font_style = get_theme_mod('avril_body_font_style','inherit');
$avril_body_font_size = get_theme_mod('avril_body_font_size','15');
$avril_body_line_height = get_theme_mod('avril_body_line_height','1.5');
$output_css .=" body{
font-size: " .esc_attr($avril_body_font_size). "px;
line-height: " .esc_attr($avril_body_line_height). ";
text-transform: " .esc_attr($avril_body_text_transform). ";
font-style: " .esc_attr($avril_body_font_style). ";
}\n";
/**
* Typography Heading
*/
for ( $i = 1; $i <= 6; $i++ ) {
$avril_heading_text_transform = get_theme_mod('avril_h' . $i . '_text_transform','inherit');
$avril_heading_font_style = get_theme_mod('avril_h' . $i . '_font_style','inherit');
$avril_heading_font_size = get_theme_mod('avril_h' . $i . '_font_size');
$avril_heading_line_height = get_theme_mod('avril_h' . $i . '_line_height');
$output_css .=" h" . $i . "{
font-size: " .esc_attr($avril_heading_font_size). "px;
line-height: " .esc_attr($avril_heading_line_height). ";
text-transform: " .esc_attr($avril_heading_text_transform). ";
font-style: " .esc_attr($avril_heading_font_style). ";
}\n";
}
/**
* Slider
*/
$slider_opacity = get_theme_mod('slider_opacity','0.5');
if($slider_opacity !== '') {
$output_css .=".theme-slider:after {
opacity: " .esc_attr($slider_opacity). ";
background: #000000;
}\n";
}
/**
* Contact Info
*/
$cleverfox_theme = wp_get_theme(); // gets the current theme
if ( 'Aviser' == $cleverfox_theme->name){
$hide_show_cntct_details = get_theme_mod( 'hide_show_cntct_details','1');
$hide_show_email_details = get_theme_mod( 'hide_show_email_details','1');
$hide_show_mbl_details = get_theme_mod( 'hide_show_mbl_details','1');
if($hide_show_cntct_details == '1' || $hide_show_email_details == '1' || $hide_show_mbl_details == '1') {
$output_css .=".navbar-area:not(.sticky-menu) {
padding: 0rem 0 1rem 0;
}\n";
}else{
$output_css .="@media (min-width: 992px) {.logo a:before {
height: 105px !important;
top: -32px !important;
}}\n";
}
}
if ( 'Avitech' == $cleverfox_theme->name || 'Varuda' == $cleverfox_theme->name){
$hdr_info_color = get_theme_mod( 'hdr_info_color');
$slide_ttl_color = get_theme_mod( 'slide_ttl_color');
$slide_subttl_color = get_theme_mod( 'slide_subttl_color');
$slide_desc_color = get_theme_mod( 'slide_desc_color');
if(!empty($hdr_info_color)):
$output_css .=" .avitech-theme .header-widget .widget:not(.widget_social_widget) a {
color: " .esc_attr($hdr_info_color). " !important;
}\n";
endif;
if(!empty($slide_ttl_color)):
$output_css .=" .avitech-theme .main-slider .theme-content h3, .varuda-theme .main-slider .theme-content h3{
color: " .esc_attr($slide_ttl_color). ";
}\n";
endif;
if(!empty($slide_subttl_color)):
$output_css .=" .avitech-theme .theme-content h1 span, .varuda-theme .theme-content h1 span{
color: " .esc_attr($slide_subttl_color). ";
}\n";
endif;
if(!empty($slide_desc_color)):
$output_css .=" .avitech-theme .main-slider .theme-content p, .varuda-theme .main-slider .theme-content p{
color: " .esc_attr($slide_desc_color). ";
}\n";
endif;
$slider_opacity = get_theme_mod('slider_opacity','0.8');
if($slider_opacity !== '') {
$output_css .=".theme-slider:after {
opacity: " .esc_attr($slider_opacity). ";
background: #ffffff;
}\n";
}
}
wp_add_inline_style( 'avril-style', $output_css );
}
endif;
add_action( 'wp_enqueue_scripts', 'cleverfox_avril_dynamic_styles' );
?>