I noticed that the “cycle-slideshow” DIV was pulling in the array (slideshow settings) with double-quotes, so on line 1455 of “easy-testimonials.php” I removed the “esc_html” so:
<div class="cycle-slideshow" <?php echo esc_html($data_cycle); ?>>
…was changed to:
<div class="cycle-slideshow" <?php echo $data_cycle; ?>>
…and it’s working now for me.
I hope this helps someone else!