D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
self
/
cwd
/
wp-content
/
plugins
/
aeen-core
/
elementor
/
service-box
/
Filename :
view-6.php
back
Copy
<?php /** * This file can be overridden by copying it to yourtheme/elementor-custom/title/view.php * * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Aeen_Core; use Elementor\Utils; use Elementor\Group_Control_Image_Size; extract($data); $service_boxes1 = $data[ 'service_boxes1' ]; ?> <div class="row no-gutters d-md-flex justify-content-center"> <?php foreach( $service_boxes1 as $service_box1 ) : $sbox_title = $service_box1[ 'sbox_title' ]; $sbox_content = $service_box1[ 'sbox_content' ]; $sbox_icon = $service_box1[ 'sbox_icon' ]; $sbox_tablet_col = $service_box1[ 'sbox_tablet_col' ]; if ( $sbox_tablet_col === 'yes' ) { $col_class = 'col-lg-4 col-12'; }else{ $col_class = 'col-lg-4 col-md-6 col-12'; } ?> <div class="<?php echo esc_attr( $col_class ); ?>"> <div class="feature-box-layout2"> <?php if( !empty( $sbox_icon['value'] ) ) : ?> <div class="item-icon"> <i class="<?php echo esc_attr( $sbox_icon['value'] ); ?>"></i> </div> <?php endif; if( !empty( $sbox_title ) ) : ?> <h3 class="item-title"><?php echo esc_html( $sbox_title ); ?></h3> <?php endif; if( !empty( $sbox_content ) ) : ?> <p><?php echo esc_html( $sbox_content ); ?></p> <?php endif; ?> </div> </div> <?php endforeach; ?> </div>