Hello,
Try to add the following code in fucntion.php of the child theme to remove the prices.
add_filter( 'woocommerce_variable_sale_price_html', 'businessbloomer_remove_prices', 9999, 2 );
add_filter( 'woocommerce_variable_price_html', 'businessbloomer_remove_prices', 9999, 2 );
add_filter( 'woocommerce_get_price_html', 'businessbloomer_remove_prices', 9999, 2 );
function businessbloomer_remove_prices( $price, $product ) {
if ( ! is_admin() ) $price = '';
return $price;
}
Try to find a third party plugin to achieve more functionality.
https://woocommerce.com/products/order-on-whatsapp-for-woocommerce/
Best Regards.