Hide Div if query is empty

Hello

On my single product page, I’ve a div that contains the elements “related posts” and “basic text”.
The “related posts” is a query loop that shows Woocommerce products in a similar category.

How can I hide the div completely if the query returns no products? (It’s about hiding the “Basic text” element as well).

I’ve tried several “conditions” without success.

I’d be glad if someone can help me out.

Thanks

I don’t know if this will help or not, but here is an example from a video (from a membership site).

In this example it is using custom fields to inject dynamic data, and the developer has put “show” and “hide” as radio button options in the custom fields, so that if the user sets a dynamic data entry to “hide,” the entire section will not appear.

Your situation is different as you would seem to need to identify all of your product images with something the condition could look for, and not show the container if that “something” does not appear.

(“hide” here is not a command to hide, but a data field selected by the user that does or does not appear)

show_hide_container_condition_example

Thanks for your suggestion, I’ve tried something like that but with no success.