Created by Michael Visser 2019-04-22 View revision File functions.php Added Side-by-side diff More Ignore whitespace Hide word diff +<?php +function custom_woo_pd_brand_term_taxonomy( $term_taxonomy = false ) { + + // Term Taxonomy of Brands used within your WooCommerce store, defaults to product_brand + return 'product_brands'; + +} +add_filter( 'woo_pd_brand_term_taxonomy', 'custom_woo_pd_brand_term_taxonomy', 11 ); +?>