Add a filter dropdown for product tags in woocommerce admin product list

前端 未结 2 1330
余生分开走
余生分开走 2021-01-23 05:09

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.

相关标签:
2条回答
  • 2021-01-23 05:56

    you need to use woocommerce_product_filters filter as follow:

    add_filter('woocommerce_product_filters', 'tag_filter', 10, 1);
    
    function tag_filter($output)
    {
     $terms = get_terms('product_tag'); //Get all Tags
     ?> <select name="product_tag" id="product_tag_id">
      <option value="">Filter by product tags </option>
    <?php
    foreach ($terms as $term) { //Loop Throug tags and print the option with Tag Name
            echo '<option value=' . $term->name . '> ' . $term->name . 
    '</option>';
        }
        ?>
            </select>
    
            <?php
    }
    

    Output :

    of course you need to place this code inside your functions.php

    0 讨论(0)
  • 2021-01-23 06:12

    Try the following that will add filtering for product tags in admin product list:

    add_action('restrict_manage_posts', 'product_tags_sorting');
    function product_tags_sorting() {
        global $typenow;
    
        $taxonomy  = 'product_tag';
    
        if ( $typenow == 'product' ) {
    
    
            $selected      = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : '';
            $info_taxonomy = get_taxonomy($taxonomy);
    
            wp_dropdown_categories(array(
                'show_option_all' => __("Show all {$info_taxonomy->label}"),
                'taxonomy'        => $taxonomy,
                'name'            => $taxonomy,
                'orderby'         => 'name',
                'selected'        => $selected,
                'show_count'      => true,
                'hide_empty'      => true,
            ));
        };
    }
    
    add_action('parse_query', 'product_tags_sorting_query');
    function product_tags_sorting_query($query) {
        global $pagenow;
    
        $taxonomy  = 'product_tag';
    
        $q_vars    = &$query->query_vars;
        if ( $pagenow == 'edit.php' && isset($q_vars['post_type']) && $q_vars['post_type'] == 'product' && isset($q_vars[$taxonomy]) && is_numeric($q_vars[$taxonomy]) && $q_vars[$taxonomy] != 0 ) {
            $term = get_term_by('id', $q_vars[$taxonomy], $taxonomy);
            $q_vars[$taxonomy] = $term->slug;
        }
    }
    

    Code goes in functions.php file of your active child theme (or active theme). Tested and works.

    0 讨论(0)
提交回复
热议问题