How to detect if this post is a woocommerce product?

You can Use Condition for check product or post

if(is_product() && get_the_id() == 243) {
    //do stuff
}else{
    //do stuff
}