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

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

- Page: https://pluginprobe.com/plugins/easy-elements/1.3.2/code/widgets/testimonials-grid/skins/default.php
- Raw: https://pluginprobe.com/plugins/easy-elements/1.3.2/raw/widgets/testimonials-grid/skins/default.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/default.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="ee--tstml-inner-wrap">
    <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; ?>

            <?php if ( ! empty( $item['designation'] ) ) : ?>
                <em class="eel-designation"><?php echo esc_html( $item['designation'] ); ?></em>
            <?php endif; ?>

            <?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>
    </div>

    <?php if ( ! empty( $item['description'] ) ) : ?>
        <div class="eel-description"><?php echo esc_html( $item['description'] ); ?></div>
    <?php endif; ?>

    <?php if ( ! empty( $item['quote_icon']['value'] ) ) : ?>
        <div class="eel-quote" aria-hidden="true">
            <?php \Elementor\Icons_Manager::render_icon( $item['quote_icon'], [ 'aria-hidden' => 'true' ] ); ?>
        </div>
    <?php endif; ?>
</div>

```
