---
title: "Force add Variations to all Product queries"
source: "https://docs.nexcess.com/software/kadence/iconic/show-single-variations/force-add-variations-to-all-product-queries/"
description: "Show Single Variations (SSV) smartly adds variations to all WooCommerce queries like category pages, tag pages, WooCommerce product shortcodes, related products…"
vertical: "Software"
area: "Show Single Variations"
date: "2021-06-30"
last_modified: "2026-07-02"
---

# Force add Variations to all Product queries

Show Single Variations (SSV) smartly adds variations to all WooCommerce queries like category pages, tag pages, WooCommerce product shortcodes, related products, etc. But if you use a theme that has lots of custom WooCommerce modules, SSV would choose not to add variations to those custom modules by default.

As a solution to this problem, SSV provides a setting to forcefully add variations to all the Product queries on the website (front end only).

![](https://docs.nexcess.com/wp-content/uploads/2026/06/image-14.png)When checked, SSV would add variations to all queries that output ‘products’ posts.

### How to prevent adding of variations to a specific query?

If you have a custom query where you want to list only the requested products and not all variations, then you can add the `iconic_ssv_exclude_variations` argument to the list of arguments passed to the WP\_Query constructor. Here’s an example:

```
$args = array(
		'post_type' => 'product',
		'posts_per_page' => 10,
		'iconic_ssv_exclude_variations' => true,
	);

$query = new WP_Query( $args );
```
