| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/so-widgets-bundle/widgets/testimonial/tpl/ |
Upload File : |
<?php
/**
* @var $design
* @var $settings
* @var $testimonials
*/
?>
<?php if( !empty( $instance['title'] ) ) echo $args['before_title'] . esc_html($instance['title']) . $args['after_title'] ?>
<?php $this->caret_svg() ?>
<div class="sow-testimonials">
<?php foreach( $testimonials as $testimonial ) : ?>
<?php
$url = $testimonial['url'];
$new_window = $testimonial['new_window'];
$location = $testimonial['location'];
$image_id = $testimonial['image'];
$link_location = ! empty( $url );
$link_name = ! empty( $testimonial['link_name'] ) && ! empty( $url );
$link_image = ! empty( $testimonial['link_image'] ) && ! empty( $url );
?>
<div class="sow-testimonial-wrapper <?php echo $this->testimonial_wrapper_class($design) ?>">
<div class="sow-testimonial">
<?php if( strpos($design['layout'], '_above') !== false ) : ?>
<div class="sow-testimonial-text">
<?php echo wp_kses_post( $testimonial['text'] ) ?>
</div>
<?php endif; ?>
<div class="sow-testimonial-user">
<?php if( ! empty( $image_id ) ) : ?>
<div class="sow-image-wrapper">
<?php if( $link_image ) : ?>
<a href="<?php echo sow_esc_url( $url ) ?>" <?php if( ! empty( $new_window ) ) { echo 'target="_blank" rel="noopener noreferrer"'; } ?>>
<?php endif; ?>
<?php echo $this->testimonial_user_image( $image_id, $design ); ?>
<?php if( $link_image ) : ?>
</a>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="sow-text">
<?php if( $link_name ) : ?>
<a href="<?php echo sow_esc_url( $url ) ?>" <?php if( ! empty( $new_window ) ) { echo 'target="_blank" rel="noopener noreferrer"'; } ?>>
<?php endif; ?>
<span class="sow-testimonial-name"><strong><?php echo esc_html( $testimonial['name'] ) ?></strong></span>
<?php if( $link_name ) : ?>
</a>
<?php endif; ?>
<?php if( $link_location ) : ?>
<a href="<?php echo sow_esc_url( $url ) ?>" <?php if( ! empty( $new_window ) ) { echo 'target="_blank" rel="noopener noreferrer"'; } ?>>
<?php endif; ?>
<?php if( ! empty( $location ) ) : ?>
<span class="sow-testimonial-location"><?php echo esc_html( $location ) ?></span>
<?php endif; ?>
<?php if( $link_location ) : ?>
</a>
<?php endif; ?>
</div>
<?php // $this->testimonial_pointer($design) ?>
</div>
<?php if( strpos($design['layout'], '_above') === false ) : ?>
<div class="sow-testimonial-text">
<?php echo wp_kses_post( $testimonial['text'] ) ?>
</div>
<?php endif; ?>
</div>
</div>
<?php endforeach; ?>
</div>