F
F
Fqwd1232021-07-28 15:37:34
WordPress
Fqwd123, 2021-07-28 15:37:34

Remove js plugin code?

Tell me how to disable unnecessary js plugin code, for example, there is such a block

<script type="text/javascript" id="mailchimp-woocommerce-js-extra">

How can I remove this connection? I tried different
add_action( 'wp_print_styles', 'aa_deregister_styles', 100 );
function aa_deregister_styles() {

    wp_deregister_script( 'mailchimp-woocommerce-js-extra' );
    wp_deregister_script( 'mailchimp-woocommerce-js' );
    wp_deregister_script( 'mailchimp-woocommerce' );

}

and used the function wp_dequeue_script()nothing helped

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question