PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.3.7
Easy Elements for Elementor – Addons & Website Templates v1.3.7
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / widgets / testimonials-grid / skins / skin1.php

skin1.php in Easy Elements for Elementor – Addons & Website Templates 1.3.7, at widgets/testimonials-grid/skins/skin1.php

56 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5 ?>
6 <div class="ee--tstml-inner-wrap <?php echo esc_attr($skin); ?>">
7 <?php if ( ! empty( $logo_data ) ) : ?>
8 <div class="eel-company-logo">
9 <img
10 src="<?php echo esc_url( $logo_data[0] ); ?>"
11 width="<?php echo esc_attr( $logo_data[1] ); ?>"
12 height="<?php echo esc_attr( $logo_data[2] ); ?>"
13 alt="<?php echo esc_attr( $logo_alt ); ?>"
14 title="<?php echo esc_attr( $logo_title ); ?>"
15 loading="lazy"
16 decoding="async"
17 fetchpriority="low"
18 >
19 </div>
20 <?php endif; ?>
21
22 <?php if ( ! empty( $item['description'] ) ) : ?>
23 <div class="eel-description"><?php echo esc_html( $item['description'] ); ?></div>
24 <?php endif; ?>
25 <div class="eel-author-wrap">
26 <?php
27 if ( $settings['show_image'] === 'yes' && $image_data ) : ?>
28 <div class="eel-picture">
29 <img
30 src="<?php echo esc_url( $image_data[0] ); ?>"
31 width="<?php echo esc_attr( $image_data[1] ); ?>"
32 height="<?php echo esc_attr( $image_data[2] ); ?>"
33 alt="<?php echo esc_attr( $alt ); ?>"
34 title="<?php echo esc_attr( $title ); ?>"
35 loading="lazy"
36 decoding="async" fetchpriority="low">
37 </div>
38 <?php endif; ?>
39
40 <div class="eel-author">
41 <?php if ( ! empty( $item['name'] ) ) : ?>
42 <div class="eel-name">
43 <?php echo esc_html( $item['name'] ); ?>
44 <?php if ( ! empty( $settings['title_icon'] ) ) : ?>
45 <span class="eel-title-icon"><?php \Elementor\Icons_Manager::render_icon( $settings['title_icon'], [ 'aria-hidden' => 'true' ] ); ?></span>
46 <?php endif; ?>
47 </div>
48 <?php endif; ?>
49
50 <?php if ( ! empty( $item['designation'] ) ) : ?>
51 <em class="eel-designation"><?php echo esc_html( $item['designation'] ); ?></em>
52 <?php endif; ?>
53 </div>
54 </div>
55 </div>
56