/** * Add product_brand to taxonomies list for variations. * * @param array $taxonomies * * @return array*/add_filter( ‘woocommerce_single_variations_taxonomies’, ‘add_custom_taxonomies’, 10, 1 );function add_custom_taxonomies( $taxonomies ) { $taxonomies[] = ‘product_brand’; return $taxonomies;}
This is the code but I don’t know what the name of the taxonomy of this plugin is or where I can consult it to run it.