• Resolved rpost

    (@rpost)


    Hello. How delete popper.js and tippy.js scripts from footer?

    <script type='text/javascript' src='https://unpkg.com/popper.js@1?ver=2.2.2' id='ekit-popover-js'></script>
    <script type='text/javascript' src='https://unpkg.com/tippy.js@5?ver=2.2.2' id='ekit-typpy-js'></script>

    And a little mistake: https://i.imgur.com/W1tLCjG.png

    • This topic was modified 4 years, 12 months ago by rpost.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Enamul Mohon

    (@enamulhoquemohon)

    Hi @rpost,

    Thanks for noticing them. It will be removed from the next release.

    For now, you can add the below code snippet to your child theme’s functions.php file, to dequeue them from your site:

    function dequeue_ekit_js() {
    	wp_dequeue_script( 'ekit-popover' );
    	wp_dequeue_script( 'ekit-typpy' );
    }
    add_action( 'elementor/frontend/before_enqueue_scripts', 'dequeue_ekit_js', 99 );

    Alternatively, you can also comment out the codes from ElementsKit plugin as shown in the screenshot. (https://d.pr/i/atBCms)

    Kind Regards,
    Mohon

    Thread Starter rpost

    (@rpost)

    Thanks!

    Hi There,

    Hope that your problem has been solved with the above given code 🙂

    If this plugin looks good to you may be you can help us by giving a 5 star on ww.wp.xz.cn? – https://ww.wp.xz.cn/support/plugin/elementskit-lite/reviews/

    We’re working so hard to make this plugin more and more useful to our valuable clients like you, and a 5 star will really help us to grow on the market 🙂

    Best Regards,
    Benjir

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

The topic ‘Delete scripts from footer’ is closed to new replies.