I want to also add a filter tag next to the filter by category in the woocommerce products page. Below image is in ducth but I want to add another dropdown menu if possible.
you need to use woocommerce_product_filters filter as follow:
woocommerce_product_filters
add_filter('woocommerce_product_filters', 'tag_filter', 10, 1); function tag_filter($output) { $terms = get_terms('product_tag'); //Get all Tags ?> Filter by product tags name . '> ' . $term->name . ''; } ?>
Output :
of course you need to place this code inside your functions.php