Hi Hal, Thanks creating and sharing this plug-in.
I’ve used it a few times now and it’s been great. Today I’m adding the rotator to a front-page.php template. With the code below.
function source_front_page_reviews() {
$review_rotator = do_shortcode('[testimonial_rotator id=27]');
echo '<section class="review_wap-home"><div class="wrap">' . $review_rotator . '</div></section>';
}
add_action( 'source_reviews_section', 'source_front_page_reviews' );
The rotator shows as expected but the rotation doesn’t work, automatically or via click. I’ve tried adding the rotator in various ways for example.
echo do_shortcode('[testimonial_rotator id=27]');
But that still results in non moving rotator. Can you assist?