WOOT - WooCommerce Active Products Tables

How to insert WOOT searchinput on Shop page

Example is here: https://demo.products-tables.com/shop

Do next:

  • Create new table in WOOT admin page
  • Set its columns, options and assemble filter form if it necessary
  • Open file functions.php of the current wordpress theme and paste there next code:
    add_filter('woocommerce_before_shop_loop', function() {
        echo do_shortcode('[woot_drop_down id=2]');
        echo '<br />';
    });
    

     

Also read: WooCommerce Visual Hook Guide