Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • The WP version of my site was dated and jquery was deregistered in order to get it from the CDN.

    Now i’ve updated WP to 4.4.1 version and using the bundled jquery all works fine. I just tried to remove the jquery enqueue, no problems to report.

    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.

Viewing 2 replies - 1 through 2 (of 2 total)