Viewing 2 replies - 1 through 2 (of 2 total)
  • thomasmiss

    (@thomasmiss)

    I would also like to know, how to disable Swatches Settings on the product page!

    Plugin Author Emran Ahmed

    (@emranahmed)

    Hi @arrenato @thomasmiss

    Thanks for reaching out to us. Please use the below code as a snippet (using Code Snippet Plugin) or, put the below code inside child theme’s functions.php-

    
    function wvs_swatch_deactivate_data_tabs()
    {
      if ( ! class_exists( 'Woo_Variation_Swatches_Pro' ) ) {
        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', 'wvs_swatch_deactivate_data_tabs');
    

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable Product Swatches Settings’ is closed to new replies.