Answers for "wp woocommerce change product tags to checbox"

0

wp woocommerce change product tags to checbox

function my_woocommerce_make_tags_hierarchical( $args ) {
    $args['hierarchical'] = true;
    return $args;
};
add_filter( 'woocommerce_taxonomy_args_product_tag', 'my_woocommerce_make_tags_hierarchical' );
Posted by: Guest on September-14-2021

Code answers related to "wp woocommerce change product tags to checbox"

Browse Popular Code Answers by Language