# easy-elements/1.4.7/widgets/testimonials-grid/skins/skin1.php

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.4.7. 62 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.4.7/code/widgets/testimonials-grid/skins/skin1.php
- Raw: https://pluginprobe.com/plugins/easy-elements/1.4.7/raw/widgets/testimonials-grid/skins/skin1.php
- Modified: 2026-06-03T10:59:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-elements/1.4.7/code/widgets/testimonials-grid/skins/skin1.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="ee--tstml-inner-wrap <?php echo esc_attr($skin); ?>">
    <?php if ( ! empty( $logo_data ) ) : ?>
        <div class="eel-company-logo">
            <img
                src="<?php echo esc_url( $logo_data[0] ); ?>"
                width="<?php echo esc_attr( $logo_data[1] ); ?>"
                height="<?php echo esc_attr( $logo_data[2] ); ?>"
                alt="<?php echo esc_attr( $logo_alt ); ?>"
                title="<?php echo esc_attr( $logo_title ); ?>"
                loading="lazy"
                decoding="async"
                fetchpriority="low"
            >
        </div>
    <?php endif; ?>

    <?php if ( ! empty( $item['quote_icon']['value'] ) && ! empty( $item['show_quote_icon_skin1'] ) && $item['show_quote_icon_skin1'] === 'yes' ) : ?>
        <div class="eel-quote" aria-hidden="true">
            <?php \Elementor\Icons_Manager::render_icon( $item['quote_icon'], [ 'aria-hidden' => 'true' ] ); ?>
        </div>
    <?php endif; ?>

    <?php if ( ! empty( $item['description'] ) ) : ?>
        <div class="eel-description"><?php echo esc_html( $item['description'] ); ?></div>
    <?php endif; ?>
    <div class="eel-author-wrap">
        <?php
        if ( $settings['show_image'] === 'yes' && $image_data ) : ?>
            <div class="eel-picture">
            <img
            src="<?php echo esc_url( $image_data[0] ); ?>"
            width="<?php echo esc_attr( $image_data[1] ); ?>"
            height="<?php echo esc_attr( $image_data[2] ); ?>"
            alt="<?php echo esc_attr( $alt ); ?>"
            title="<?php echo esc_attr( $title ); ?>"
            loading="lazy"
            decoding="async" fetchpriority="low">
        </div>
        <?php endif; ?>

        <div class="eel-author">
            <?php if ( ! empty( $item['name'] ) ) : ?>
                <div class="eel-name">                    
                    <?php echo esc_html( $item['name'] ); ?>
                    <?php if ( ! empty( $settings['title_icon'] ) ) : ?>
                        <span class="eel-title-icon"><?php \Elementor\Icons_Manager::render_icon( $settings['title_icon'], [ 'aria-hidden' => 'true' ] ); ?></span>
                    <?php endif; ?>
                </div>
            <?php endif; ?>

            <?php if ( ! empty( $item['designation'] ) ) : ?>
                <em class="eel-designation"><?php echo esc_html( $item['designation'] ); ?></em>
            <?php endif; ?>
        </div>
    </div>
</div>

```
