• Resolved auludag

    (@auludag)


    Hi,

    I see Woocommerce call Wistia and hence src.litix.io.

    @mikejolley you said in a topic somewhere “Wistia is what we use to serve product help videos. They are found in the “Help” tab in admin. The other script must be one of their dependencies.”

    How can I remove those calls to decrease external calls?

    Thanks for assistance,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Shane Eckert

    (@shaneeckert)

    Automattic Happiness Engineer

    Hey auludag,

    You can remove the help tab, which will eliminate the Wistia calls. Just add this function to your theme’s functions.php file.

    add_filter( 'woocommerce_enable_admin_help_tab','remove_woocommerce_enable_admin_help_tab' );
    function remove_woocommerce_enable_admin_help_tab() {
        return false;
    }

    Cheers,
    Shane

    • This reply was modified 7 years, 2 months ago by Shane Eckert.
    Thread Starter auludag

    (@auludag)

    @shaneeckert thank you very much! Your answer solved that.

    • This reply was modified 7 years, 1 month ago by auludag.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Why wistia needs for Woocommerce to Work’ is closed to new replies.