That’s only one way to achieve that, but it’s the easiest, I guess.
The taxonomy UI is displayed as list of checkboxes, if given taxonomy is hierarchical.
So if you change the product tags to hierarchical, it will solve your problem.
And it’s pretty easy to change, because there’s a hook for that:
function my_woocommerce_make_tags_hierarchical( $args ) {
$args['hierarchical'] = true;
return $args;
};
add_filter( 'woocommerce_taxonomy_args_product_tag', 'my_woocommerce_make_tags_hierarchical' );
Related Posts:
- How to display custom field in woocommerce orders in admin panel?
- How to create a custom order status in woocommerce!
- How to show product SKU on product page
- How to get woocommerce inventory status [closed]
- Woocommerce add to simple product attribute programmatically [closed]
- How to automatically apply woocommerce product title to all product images alt tags?
- In WooCommerce I need to modify the thankyou.php page [closed]
- How to Acheive the custom woocommerce category template
- Remove tag on my RSS Feed
- Remove product description from product archive page
- Hide some items from Screen options in dashboard for products
- get_the_excerpt() not returning anything when post has no excerpt
- display 100 products per page on product category page [closed]
- Adding WooCommerce to a Custom Theme – not working [closed]
- Can you use admin pages functionality on the frontend of your site
- Creating loop within functions.php
- Adding a class to tag list in a function
- Override woocommerce wc-class function
- Display WooCommerce subscriptions for user [closed]
- Increment price for Woocommerce Minicart [closed]
- Change woocommerce products weight varation based its product category or tags? [closed]
- Woocommerce checkout field maxlength, make input number field only (postcode)
- change in form-checkout.php by using code in functions.php
- Create single.php for specific tag by tag id or name
- Set quantity of woocommerce product on page visit [closed]
- Calling a function from anywhere, used in different places
- Selective Product Category for Carousel
- Retrieve tags data in post body
- Echo tags used to describe the theme
- I want to get product attirbute in the section below
- How can I remove the main description text box in a Woocommerce product editor page? I only use the “Product short description” text box [closed]
- How to display custom option field in woocommerce orders in admin panel?
- How to add a slide toggle to the Woocommerce-Layout__Activity-Panel area in the orders admin page
- Add to cart php not working [closed]
- Is possible add icon in title posts only in specific tag?
- How to auto refresh when user change postcode
- Remove the product category module block from the Woocommerce product page
- woocommerce change currency per category [closed]
- Display tags that only appear in one category
- Add a unique class to HTML tag/element
- help I changed one currency in woocommerce and everything is ruined [closed]
- Functions when woocommerce isn’t installed
- How to override woocommerce.css?
- How can I use Woocommerce $product->get_attribute in functions.php? (if at all)
- How to edit the Tags within the image file URLs?
- How to change this simple code so that it sends the email notification after payment in WooCommerce?
- (Woocommerce) Order by price when entering specific category
- Tags break custom Excerpt function
- replace text in Sort Box
- Woocommerce checkout field
- add referrer to woo
- Add Login/Logout Menu Item to Primary Nav “My Account” Submenu [Woocommerce] [closed]
- Create a Woocommerce product widget with category filter
- Auto scroll to id on page load on all pages except home page. Only do this on mobile
- Adding product to WooCommerce cart [closed]
- Change WooCommerce add_to_cart Button Text?
- WooCommerce -> wc_enqueue_js not working [closed]
- Use existing image sizes for WooCommerce
- Sort and display pages with specific custom field (not tag)
- Function to echo (or display?) wordpress tags in the head section
- Woocommerce Variable Product Dropdown for Custom Shop Template
- How to hide content on mobile in the functions.php file – woocommerce
- Woocommerce Default sorting product by product type
- What is wp_get_post_tags for media tags?
- Change class woocommerce on function.php
- Hide ‘add to cart’ when certain value in dropdown is selected
- Remove text after a dot and a colon in Woocommerce product title
- When are the user meta fields created in the database? Admin vs Woo API REST
- price of product can’t return when get data of product in functions.php
- Woocommerce product price change
- Help with with my function for wordpress
- Allow user only create specific tags
- Remove clickable Link of WordPress Site Logo from Woocommerce Single Product page
- is_product_category(‘Services’) not working
- Problems adding a new field to product in cart
- Variable function names
- Woocommerce – Switching Price for Category
- Removing sanitize_title_with_dashes Function with The Real Title
- add product thumbnail to checkout page only and include variation name
- Echo a String Based On Geolocation? [Woocommerce || ACF]
- Move product attributes after summary on single product page
- Which method is more correct for removing WooCommerce Extensions menu item?
- Show number of sold products but be first for less than 2
- function syntax is off,
- require_once() Causing categories and tag pages on dashboard to not refrsh
- Change post count on tag/terms pages to 10
- Insert menu into theme location depending on user logged in/out status
- Automatically add tag if a checkbox is checked
- Make WordPress search for only this tags or exclude certain tags from search [duplicate]
- How to get tags and categories?
- If two tags in the middle i need comma
- Get term count on a category page
- add variable to actions/functions across different files (woocommerce)
- Display function from functions.php in tag.php
- reusing code in function and running it with loop
- Bulk set Post Title as Tag where Tag is Empty Function
- woocommerce_sort_product_tabs() expects an array
- sort by date in users
- Is it possible to set the first image from a gallery as the product image, rather than the featured image?
- Copy and Modified WooCommerce function is_coupon_valid [closed]