PluginProbe ʕ •ᴥ•ʔ
Spider Elements – Premium Elementor Widgets & Addons Library / 1.6.5
Spider Elements – Premium Elementor Widgets & Addons Library v1.6.5
trunk 1.0.0 1.1.0 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.7.0 1.8.0 1.9.0
spider-elements / widgets / templates / Icon-box / icon-box2.php
spider-elements / widgets / templates / Icon-box Last commit date
icon-box1.php 1 year ago icon-box2.php 1 year ago
icon-box2.php
27 lines
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit; // Exit if accessed directly.
4 } ?>
5
6 <div class="icon_box_two">
7 <a <?php spel_button_link($settings['box2_link']); ?>>
8 <div class="box2_bg_shape">
9 <?php if ( ! empty( $settings['i_box_icon'] ) ) { ?>
10 <span class="box_main_icon"><?php \Elementor\Icons_Manager::render_icon( $settings['i_box_icon'], [ 'aria-hidden' => 'true' ] ); ?></span>
11 <?php } ?>
12 <?php if ( ! empty( $settings['pro_box_icon'] ) ) { ?>
13 <span class="box_pro_icon"><?php \Elementor\Icons_Manager::render_icon( $settings['pro_box_icon'], [ 'aria-hidden' => 'true' ] ); ?></span>
14 <?php } ?>
15
16 <?php if ( ! empty( $settings['title'] ) ) { ?>
17 <div class="box2_url">
18 <<?php echo esc_attr( $box_title_tag ); ?> class="box_two_title">
19 <?php echo esc_html( $settings['title'] ); ?>
20 </<?php echo esc_attr( $box_title_tag ) ?>>
21 </div>
22 <?php } ?>
23
24 </div>
25 </a>
26 </div>
27