Hide price and add to cart button on product page only

This will remove price and add to cart button on the product page Only

// Remove Price from the product page
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );

// Remove Add to cart form from the product page
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );