I need to create a conditional to hide a specific part of my product page template if the product is a Gift Card type.
I tried something like this but it returning FALSE
$temp_product = wc_get_product( $product->get_id() );
var_dump( is_a( $temp_product, 'WC_Product_PW_Gift_Card' ) );
How it is possible to do get the type of product (Gift card or not)?
EDIT: I am using woocommerce gift Card plugin.