| 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/accron/sections/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
$accron_service_hs = get_theme_mod('service_hs','1');
$accron_service_title = get_theme_mod('service_title',__('<span class="primary-color">What</span> We Do','clever-fox'));
$accron_service_subtitle = get_theme_mod('service_subtitle',__('Outstanding Service','clever-fox'));
$accron_service_description = get_theme_mod('service_description',__('There are many variations of passages of Lorem Ipsum available.','clever-fox'));
$accron_service_description2 = get_theme_mod('service_description2',__('Digital Agency Services Built Specifically For Your Business.','clever-fox'));
$accron_service_btn_lbl = get_theme_mod('service_btn_lbl',__('Find Your Solution','clever-fox'));
$accron_service_btn_link = get_theme_mod('service_btn_link','#');
$accron_service_contents = get_theme_mod('service_contents',accron_get_service_default());
$accron_service_sec_column = get_theme_mod('service_sec_column','3');
if($accron_service_hs=='1'){
?>
<!-- Start: Service Section
=======================-->
<!-- Service start -->
<section class="service-section service-home">
<div class="container">
<?php if(!empty($accron_service_title) || !empty($accron_service_subtitle) || !empty($accron_service_description)): ?>
<div class="section-title col-lg-6 mx-auto">
<?php if(!empty($accron_service_title)): ?>
<h2 class="section-title-heading">
<?php echo wp_kses_post($accron_service_title); ?>
</h2>
<?php endif; ?>
<?php if(!empty($accron_service_subtitle)): ?>
<span class="sub-title">
<?php echo esc_html($accron_service_subtitle); ?>
</span>
<?php endif; ?>
<?php if(!empty($accron_service_description)): ?>
<p>
<?php echo wp_kses_post($accron_service_description); ?>
</p>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="row">
<?php
if ( ! empty( $accron_service_contents ) ) {
$accron_service_contents = json_decode( $accron_service_contents );
$accron_count = 1;
foreach ( $accron_service_contents as $accron_service_item ) {
$accron_service_image2 = ! empty( $accron_service_item->image_url2 ) ? apply_filters( 'accron_translate_single_string', $accron_service_item->image_url2, 'Service section' ) : '';
$accron_service_icon = ! empty( $accron_service_item->icon_value) ? apply_filters( 'accron_translate_single_string', $accron_service_item->icon_value,'Service section' ) : '';
$accron_service_title = ! empty( $accron_service_item->title ) ? apply_filters( 'accron_translate_single_string', $accron_service_item->title, 'Service section' ) : '';
$accron_service_subtitle = ! empty( $accron_service_item->text ) ? apply_filters( 'accron_translate_single_string', $accron_service_item->text, 'Service section' ) : '';
$accron_service_link = ! empty( $accron_service_item->link ) ? apply_filters( 'accron_translate_single_string', $accron_service_item->link, 'Service section' ) : '';
?>
<div class="col-lg-<?php echo esc_attr($accron_service_sec_column); ?> col-md-6 col-sm-6">
<div class="service">
<div class="service-image" data-tilt>
<img src="<?php echo esc_url($accron_service_image2); ?>" width="306" height="356" alt="">
<div class="service-content">
<div class="service-icon">
<i class="fas <?php echo esc_attr($accron_service_icon); ?>"></i>
</div>
<div class="service-heading">
<?php if ( ! empty( $accron_service_title ) ) : ?>
<h2>
<a href="<?php echo esc_url( $accron_service_link ); ?>">
<?php echo esc_html( $accron_service_title ); ?>
</a>
</h2>
<?php endif; ?>
<?php if ( ! empty( $accron_service_subtitle ) ) : ?>
<span>
<?php echo esc_html( $accron_service_subtitle ); ?>
</span>
<?php endif; ?>
</div>
<a href="<?php echo esc_url( $accron_service_link ); ?>" area-label="arrow right for click to more detail"><i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
</div>
<?php ++$accron_count; } }?>
</div>
<?php if(!empty($accron_service_description2) || !empty($accron_service_btn_lbl) || !empty($accron_service_btn_link)): ?>
<div class="row">
<div class="col-lg-8 mx-auto"><p class="find-solution"><?php echo wp_kses_post($accron_service_description2); ?> <a href="<?php echo esc_url($accron_service_btn_link); ?>"><?php echo esc_html($accron_service_btn_lbl); ?></a></p></div>
</div>
<?php endif; ?>
</div>
</section>
<!-- End: Service Section
=======================-->
<?php } ?>