WooCommerce IF statements not working

The solution to my problem was to use:

has_term( 'the-cat-I-want-to-display', 'product_cat' ) || is_product_category( 'the-cat-I-want-to-display' )

This worked. Thanks everyone for your help!