Woocommerce custom taxonomies page

After digging all over the place, it really was as simple as adding theme support. Go figure, just add the following:

//Adding theme support 
function mytheme_add_woocommerce_support() {
    add_theme_support( 'woocommerce' );
    add_theme_support( 'wc-product-gallery-zoom' ); //Only if want woocommerce built in
    add_theme_support( 'wc-product-gallery-lightbox' );//Only if want woocommerce built in
    add_theme_support( 'wc-product-gallery-slider' );//Only if want woocommerce built in
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );

Worth noting! This will change templates for all woocommerce pages! Meaning built in WordPress templates will be swapped for woocommerce ones. This can result in page designs being broken!

After adding the code you can create file “taxonomy-.php”. Now you can start adding you woocommerce stuff. Since most cases means it will be the same as regular categories, then just add following code:

if(is_woocommerce()) {
  wc_get_template( 'archive-product.php' );
}

Now your custom tax is loading default archive templates, and what changes you make on one will be mirrored on rest. Hope it helps.