Any idea why this query is showing products inside a different parent category and it's children? http://botanicaevents.com/rentals/?s=white&product_cat=floral
It should only show the product "White Floral Product Test"
White this query works properly: http://botanicaevents.com/rentals/?s=white&product_cat=rentals Notice how the working string above doesn't show "White Floral Product Test"
Here is the search form:
<form role="search" method="get" id="searchform" action="http://botanicaevents.com/rentals/">
<div>
<label class="screen-reader-text" for="s">Search for:</label>
<input type="text" value="" name="s" id="s" placeholder="Search for products" />
<input type="hidden" name="product_cat" value="floral" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>
The only variation in the form is name="product_cat" value="rentals"