remove ad to cart button and view more button if product price is empty

Add this in function file for hide add to cart button

function wpa_109409_is_purchasable( $purchasable, $product ){
if( $product->get_price() == 0 )
    $purchasable = false;
    return $purchasable;
}
add_filter('woocommerce_is_purchasable','wpa_109409_is_purchasable', 10, 2);

Visit this link for more detail Woocommerce – Hide “add to cart” on free products