• Resolved Fronar

    (@fronarr)


    Hello, is there a way to disabling all woocommerce widgets without disabling search bar?

    Thank you.

Viewing 1 replies (of 1 total)
  • Plugin Contributor ospiotr

    (@ospiotr)

    Hi @fronarr

    Sure, please add the following code to your functions.php file:

    add_action('widgets_init', 'wcbloat_enable_wc_search_widget', 99);
    function wcbloat_enable_wc_search_widget() {
    	register_widget('WC_Widget_Product_Search');
    	}

    Disabling all widgets using my plugin and adding this code will disable all widgets except Product Search Widget.

Viewing 1 replies (of 1 total)

The topic ‘Disabling Widgets without search bar’ is closed to new replies.