PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.3.4
Easy Elements for Elementor – Addons & Website Templates v1.3.4
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 / skin2.php

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

55 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 $avatar_image_top = ($settings['avatar_image_top'] === 'yes') ? 'eel-avatar-image-top' : '';
6 ?>
7 <div class="ee--tstml-inner-wrap <?php echo esc_attr($skin); ?> <?php echo esc_attr($avatar_image_top); ?>">
8 <?php if ( ! empty( $logo_data ) ) : ?>
9 <div class="eel-company-logo">
10 <img
11 src="<?php echo esc_url( $logo_data[0] ); ?>"
12 width="<?php echo esc_attr( $logo_data[1] ); ?>"
13 height="<?php echo esc_attr( $logo_data[2] ); ?>"
14 alt="<?php echo esc_attr( $logo_alt ); ?>"
15 title="<?php echo esc_attr( $logo_title ); ?>"
16 loading="lazy"
17 decoding="async"
18 fetchpriority="low"
19 >
20 </div>
21 <?php endif; ?>
22
23 <div class="eel-picture-des-wrap">
24 <?php
25 if ( $settings['show_image'] === 'yes' && $image_data ) : ?>
26 <div class="eel-picture">
27 <img
28 src="<?php echo esc_url( $image_data[0] ); ?>"
29 width="<?php echo esc_attr( $image_data[1] ); ?>"
30 height="<?php echo esc_attr( $image_data[2] ); ?>"
31 alt="<?php echo esc_attr( $alt ); ?>"
32 title="<?php echo esc_attr( $title ); ?>"
33 loading="lazy"
34 decoding="async" fetchpriority="low">
35 </div>
36 <?php endif; ?>
37 <div class="eel--description-wrap">
38 <?php if ( ! empty( $item['description'] ) ) : ?>
39 <div class="eel-description"><?php echo esc_html( $item['description'] ); ?></div>
40 <?php endif; ?>
41 <div class="eel-author-wrap">
42 <div class="eel-author">
43 <?php if ( ! empty( $item['name'] ) ) : ?>
44 <div class="eel-name"><?php echo esc_html( $item['name'] ); ?></div>
45 <?php endif; ?>
46
47 <?php if ( ! empty( $item['designation'] ) ) : ?>
48 <em class="eel-designation"><?php echo esc_html( $item['designation'] ); ?></em>
49 <?php endif; ?>
50 </div>
51 </div>
52 </div>
53 </div>
54 </div>
55