I have 2 taxonomy 1. Product Cat 2. Product Brand i need to show product brand template all product brand selected product cat. Example: Product Cat 1.Main Engine 2.Air Compressor Product Brand 1.B&W 2.BERGEN 3.CATERPILER Main Engine>B&W Air Compressor>CATERPILER When i click Main Engine only Product Brand Taxonomy template show B&W. (Note: template already show) so how can i fix the problem.
If I understand you correctly you want to query multiple taxonomies. Look at this plugin it allows you to do that. http://wordpress.org/extend/plugins/query-multiple-taxonomies/ Even works with custom post types and custom taxonomies.
I have 2 taxonomy. 1. product_category, and 2. product_brand Template Name: 1. taxonomy-product_category.php 2. taxonomy-product_brand.php taxonomy-product_category.php template show all product category. and taxonomy-product_brand.php show only brand name , when i click/selected from category(taxonomy-product_category.php). i mean brand name show selected category if have brand name other wise show nothing. Note: its show brand name (taxonomy) not post. i use code: $args = array('taxonomy' => 'product_brand', 'orderby' => 'name', 'order' => 'ASC', 'show_count' => 1, 'pad_counts' => 0,'hierarchical' => 1,'title_li' => ''); wp_list_categories( $args ); i know its not correct, because this code show all brand name.