'product',
'posts_per_page' => 9,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'term_id',
'terms' => $acoustics_product_collection
)
)
);
$acoustics_product_query = new WP_Query( $args );
if( $acoustics_product_query->have_posts() ) { ?>
have_posts() ) {
$acoustics_product_query->the_post();
wc_get_template_part( 'content', 'product' );
} ?>