HEX
Server: Apache
System: Linux server-634962.emtiyz.com 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: codo66ho (1003)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/codo66ho/www/wp-content/themes/autodeal/tpl/icon-information.php
<?php 

    $show_icon_information = themesflat_get_opt('show_icon_information');
    if ($show_icon_information == 1) : 
?>
    <div class="footer-information-icon-box">
        <div class="container">
            <div class="row">
            <?php if ( !empty(themesflat_get_opt( 'footer_info_text' )) && !empty(themesflat_get_opt( 'footer_info_description' ))): ?>
                <div class="col-lg-3 col-md-6 col-6 mobi-mgt30">
                    <div class="icon-infor-box">
                        <div class="icon"> <img src="<?php echo esc_url(themesflat_get_opt('footer_info_image')) ?>" alt="images"></div>
                        <div class="content">
                            <div class="title"><?php echo themesflat_get_opt('footer_info_text'); ?></div>
                            <p><?php echo themesflat_get_opt('footer_info_description'); ?></p>
                        </div>
                    </div>
                </div>
            <?php endif;?>
            <?php if ( !empty(themesflat_get_opt( 'footer_info_text2' )) && !empty(themesflat_get_opt( 'footer_info_description2' ))): ?>
                <div class="col-lg-3 col-md-6 col-6 mobi-mgt30">
                    <div class="icon-infor-box">
                        <div class="icon"> <img src="<?php echo esc_url(themesflat_get_opt('footer_info_image2')) ?>" alt="images"></div>
                        <div class="content">
                            <div class="title"><?php echo themesflat_get_opt('footer_info_text2'); ?></div>
                            <p><?php echo themesflat_get_opt('footer_info_description2'); ?></p>
                        </div>
                    </div>
                </div>
            <?php endif;?>
            <?php if ( !empty(themesflat_get_opt( 'footer_info_text3' )) && !empty(themesflat_get_opt( 'footer_info_description3' ))): ?>
                <div class="col-lg-3 col-md-6 col-6 mobi-mgt30">
                    <div class="icon-infor-box">
                        <div class="icon"> <img src="<?php echo esc_url(themesflat_get_opt('footer_info_image3')) ?>" alt="images"></div>
                        <div class="content">
                            <div class="title"><?php echo themesflat_get_opt('footer_info_text3'); ?></div>
                            <p><?php echo themesflat_get_opt('footer_info_description3'); ?></p>
                        </div>
                    </div>
                </div>
            <?php endif;?>
            <?php if ( !empty(themesflat_get_opt( 'footer_info_text4' )) && !empty(themesflat_get_opt( 'footer_info_description4' ))): ?>
                <div class="col-lg-3 col-md-6 col-6 mobi-mgt30">
                    <div class="icon-infor-box">
                        <div class="icon"> <img src="<?php echo esc_url(themesflat_get_opt('footer_info_image4')) ?>" alt="images"></div>
                        <div class="content">
                            <h5><?php echo themesflat_get_opt('footer_info_text4'); ?></h5>
                            <p><?php echo themesflat_get_opt('footer_info_description4'); ?></p>
                        </div>
                    </div>
                </div>
            <?php endif;?>
                <div class="col-md-12">
                    <div class="divide"></div>
                </div>
            </div>
        </div>
    </div>
<?php endif; ?>