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 create a custom order status in woocommerce!
- How to show product SKU on product page
- How to get woocommerce inventory status [closed]
- Edit tag cloud widget number
- How to automatically apply woocommerce product title to all product images alt tags?
- Apply jquery script to only woocommerce product pages and categories
- In WooCommerce I need to modify the thankyou.php page [closed]
- How can I add an extra WooCommerce hook
- How to Acheive the custom woocommerce category template
- Remove tag on my RSS Feed
- Hide some items from Screen options in dashboard for products
- display 100 products per page on product category page [closed]
- Automatically add author’s name to post_tag
- Adding WooCommerce to a Custom Theme – not working [closed]
- Issue adding text after short description on product pages Woocommerce [closed]
- Exclude Empty Child Categories in Menu
- change billing and shipping address 1 and 2 field placeholders [closed]
- Override woocommerce wc-class function
- woocommerce target button with class after ajax update
- WordPress function for 1 to for many
- Pass parameters to function through an action
- Create single.php for specific tag by tag id or name
- list tags with count in author profile page
- Calling a function from anywhere, used in different places
- Selective Product Category for Carousel
- Retrieve tags data in post body
- I want to get product attirbute in the section below
- Frontend tag edit/submit form
- Load Woocommerce and WordPress Functions Outside
- 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
- When sale price is 0.00 show only regular price
- Remove the product category module block from the Woocommerce product page
- how can I edit flexslider in woocommerce. [Urgent]
- 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]
- How to override woocommerce.css?
- How can I use Woocommerce $product->get_attribute in functions.php? (if at all)
- (Woocommerce) Order by price when entering specific category
- Function filter breaking tag archive menus
- Tags break custom Excerpt function
- Numbering lines of code with the tag?
- Create custom function for hero image
- Randomizing wp_tag_cloud() in child theme
- replace text in Sort Box
- add_filter to specific WooCommerce Category
- Woocommerce checkout field
- Woocommerce image sizes missing from Appearance › Customize but not declared by theme
- Way to redirect all Product Sub Category to its Main category Page?
- Add Login/Logout Menu Item to Primary Nav “My Account” Submenu [Woocommerce] [closed]
- Create a Woocommerce product widget with category filter
- Delay a function, any function!
- How add body_class from wp_termmeta
- Change WooCommerce add_to_cart Button Text?
- Function to echo (or display?) wordpress tags in the head section
- Woocommerce Default sorting product by product type
- How to hide WooCommerce product title and short description to non logged in users?
- How to add custom metakey to shop_order page’s searching function?
- localize_script but data changes dependent on product ID
- Changing the HTML of notices in WooCommerce [closed]
- What is wp_get_post_tags for media tags?
- Change class woocommerce on function.php
- Show ‘Add to Cart’ on Out of Stock products
- removing description tabs – single product page – breaks footer
- Link product attribute value to a URL – woocommerce
- 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
- is_product_category(‘Services’) not working
- Parent category as WOOCommerce Categories widget title
- Woocommerce Display Discount On cart
- Problem with my footer after changing WooCommerce Products Sorting [closed]
- Override plugin function to show invoices even if not logged in
- how can I change the read more link destinations and direct all to the same page?
- Removing sanitize_title_with_dashes Function with The Real Title
- Woocommerce custom calculation function
- button to toggle css styling / div visibility?
- Echo a String Based On Geolocation? [Woocommerce || ACF]
- Execute jQuery with custom event listener after successfully add an item to the cart
- Show number of sold products but be first for less than 2
- method to fetch entire tag list on archive.php
- 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
- Custom taxonomy not refreshing page on add
- getExcerpt: Make ellipsis appear only if character limit is reached
- Make WordPress search for only this tags or exclude certain tags from search [duplicate]
- Display post_meta-by_key on product catalogue
- Get term count on a category page
- Woocommerce – Checkout error message
- add variable to actions/functions across different files (woocommerce)
- Display function from functions.php in tag.php
- Which template file to edit to edit homepage in Mystile [closed]
- “woocommerce_output_related_products” not working
- 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]