• Resolved leec87

    (@leec87)


    I’m minifying my JS and CSS calls, and I’ve encountered an issue tha tI believe is down to this plugin calling jQuery within the files.

    The problem is that, if I leave every JS call out of my functions file, the plugin will call jQuery and place it in the header.

    I wan’t all JS in the footer, so I wp_deregister_script(‘jquery’), and then include my minified JS file that already includes the entire copy of jquery. Then it gets placed in the footer.

    What happens then is the stars don’t show. If I take away the wp_deregister_script(‘jquery’), then the plugin places a call to jquery in the head.

    Can I disable this, so that the plugin doesn’t call jQuery at all?

    https://wordpress.org/plugins/yet-another-stars-rating/

Viewing 1 replies (of 1 total)
  • Thread Starter leec87

    (@leec87)

    I solved this by placing this in the theme functions file

    remove_action( 'wp_enqueue_scripts', 'yasr_add_scripts' );

    This counteracts the plugins hook into wp_enqueue_Scripts. After this, I copied and minifed the relevant plugin CSS and JS files, and included them in my own files.

Viewing 1 replies (of 1 total)
  • The topic ‘How can I disable the plugin calling jQuery?’ is closed to new replies.