# easy-elements/1.3.2/widgets/testimonials-grid/skins/skin4.php

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.3.2. 55 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.3.2/code/widgets/testimonials-grid/skins/skin4.php
- Raw: https://pluginprobe.com/plugins/easy-elements/1.3.2/raw/widgets/testimonials-grid/skins/skin4.php
- Modified: 2026-01-29T12:34:50+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.3.2/code/widgets/testimonials-grid/skins/skin4.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; ?>

    <div class="eel-picture-des-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--description-wrap">
            <?php if ( ! empty( $item['description'] ) ) : ?>
                <div class="eel-description"><?php echo esc_html( $item['description'] ); ?></div>
            <?php endif; ?>
            <div class="eel-author-wrap">       
                <div class="eel-author">
                    <?php if ( ! empty( $item['name'] ) ) : ?>
                        <div class="eel-name"><?php echo esc_html( $item['name'] ); ?></div>
                    <?php endif; ?>

                    <?php if ( ! empty( $item['designation'] ) ) : ?>
                        <em class="eel-designation"><?php echo esc_html( $item['designation'] ); ?></em>
                    <?php endif; ?>
                </div>
            </div>
        </div>
    </div>
</div>

```
