Snippets

Visser Labs Override the default Product Brand Term Taxonomy detection in Product Importer Deluxe

Created by Michael Visser
1
2
3
4
5
6
7
8
9
<?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 );
?>

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.