• Resolved xinomilo

    (@xinomilo)


    Hey,

    working on a clients woo eshop, and on every product edit, page tries to load youtube videos and google ads (without having any on site). after some searching it all shows this plugin as responsible.. .
    i work on specific product attributes, not swatches, so not sure why you would load these youtube tutorial videos anytime i edit a product. after looking around its the video tutorials i see on “Swatches” tab on every product..
    there are video tutorial links in plugin settings page, so why would you include more/same? tutorials in product page as well(?).
    it slows down the whole page dramatically. i almost get 40hits on adblock for every product edit(!). without adblock it takes ~10″ to update a simple product. normal time on another woo eshop on the same host, is 2″-3″.

    also not sure this is compliant with gdpr or any other privacy regulations.

    thanks in advance,
    d.

Viewing 1 replies (of 1 total)
  • Plugin Support fizanzvai

    (@fizanzvai)

    @xinomilo

    Thanks for reaching out to us. We are sorry for your inconvenience. Please add the below code inside your child theme’s functions.php or create a snippet (using code snippets plugin) and add the below code-

    if ( ! class_exists( 'Woo_Variation_Swatches_Pro' ) ) {
    
       function remove_pro_data_tabs(){
    
          remove_filter( 'woocommerce_product_data_tabs', 'add_wvs_pro_preview_tab' );
    
          remove_filter( 'woocommerce_product_data_panels', 'add_wvs_pro_preview_tab_panel' );
    
       }
    
       add_action('admin_init', 'remove_pro_data_tabs');
       
    }

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘youtube/google ads (tutorials in product page too?)’ is closed to new replies.