Actually i’ve got the same problem on a wordpress site i’ve made few years ago.
First check the console, in my case the console said:
TypeError: jQuery(...).actual is not a function
in wpmtst-cycle.js
I tried to call the view either from do_shortcode
or by the “View” widget but that was not solving the problem. Instead I suggest you to check if you’re using an old version of jquery and update it, or just call the wordpress integrated version of jquery in your functions.php in this way:
function theme_add_jquery() {
wp_enqueue_script('jquery');
}
add_action('wp_enqueue_scripts', 'theme_add_jquery');
This can fix the issue you’re experiencing.