• I am trying to optimized my web site.

    So I want to remove the bellow script.
    wp-includes/js/jquery/jquery.form.min.js?ver=4.3.0′ id=’jquery-form-js’

    Please help me, how to remove or disable the script?

    Regards

    • This topic was modified 3 years, 8 months ago by Jan Dembowski.
Viewing 1 replies (of 1 total)
  • Moderator threadi

    (@threadi)

    Never seen that included anywhere? Because of the handle “jquery-form” it should be possible to deregister it:

    function custom_deregister_scripts() {
    	wp_dequeue_script( 'jquery-form' );
    }
    add_action( 'wp_head', 'custom_deregister_scripts', PHP_INT_MAX );
Viewing 1 replies (of 1 total)

The topic ‘Removing jquery.form.min.js’ is closed to new replies.