Snippets

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

Created by Michael Visser

File functions.php Added

  • 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 );
+?>
HTTPS SSH

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