# easy-elements/1.3.4/widgets/testimonials-grid/skins/skin5.php

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.3.4. 64 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.3.4/code/widgets/testimonials-grid/skins/skin5.php
- Raw: https://pluginprobe.com/plugins/easy-elements/1.3.4/raw/widgets/testimonials-grid/skins/skin5.php
- Modified: 2026-02-09T12:35:00+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.4/code/widgets/testimonials-grid/skins/skin5.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['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'] ); ?></div>
            <?php endif; ?>            
        </div>

        <?php if ( ! empty( $item['rating'] ) && $settings['show_rating'] === 'yes' ) : ?>
            <div class="eel-rating" aria-label="Rating: <?php echo intval( $item['rating'] ); ?> out of 5">
                <?php
                $rating = intval( $item['rating'] );
                for ( $i = 1; $i <= 5; $i++ ) {
                    echo '<span class="star' . ( $i <= $rating ? ' filled' : '' ) . '">' . ( $i <= $rating ? '★' : '☆' ) . '</span>';
                }
                ?>
            </div>
        <?php endif; ?>
        <div class="eel-rating">
            <?php if ( ! empty( $item['designation'] ) ) : ?>
                <em class="eel-designation"><?php echo esc_html( $item['designation'] ); ?></em>
            <?php endif; ?>
        </div>
    </div>
</div>

```
