Just wondering if it's possible to filter 2 different taxonomies at the same time?
I've got 2 drop-down lists, and when I select an item in the first it redirects (as it should), but then when I select an item in the second drop-down it disregards what was selected in the first drop-down list.
<?php $args = array( 'taxonomy' => 'taxonomylocation','select_name' => 'LOCATION');
if( function_exists( 'taxonomy_dropdown_widget' ) ) echo taxonomy_dropdown_widget( $args, 1); ?>
<?php $args = array( 'taxonomy' => 'taxonomyproductservice','select_name' => 'PRODUCT/SERVICE');
if( function_exists( 'taxonomy_dropdown_widget' ) ) echo taxonomy_dropdown_widget( $args, 2); ?>