Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: [GigPress] jQuery Error
    fred53

    (@fred53)

    I noticed this same error on a theme I was using. I changed

    wp_enqueue_script('gigpress-js', plugins_url('scripts/gigpress.js', __FILE__), 'jquery');

    To

    wp_enqueue_script('gigpress-js', plugins_url('scripts/gigpress.js', __FILE__), array('jquery'));

    This fixed the issue for us anyway. The deps should be an array according to the docs for wp_enqueue_script.

Viewing 1 replies (of 1 total)