Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

spirit

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'product_cat',
		'terms'            => 'gem-main-color',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'product_cat',
		'terms'            => 'gem-cut',
		'field'            => 'slug',
		'operator'         => 'AND',
	),
	array(
		'taxonomy'         => 'product_cat',
		'terms'            => 'settings',
		'field'            => 'slug',
		'operator'         => 'NOT IN',
		'include_children' => true,
	),
);