Aslında değer. Bana woocommerce whatsapp satın al butonu yap dedim sadece function.php ye eklemem gereken kodu verdi
add_action( 'woocommerce_after_add_to_cart_button', 'add_whatsapp_order_button' );
function add_whatsapp_order_button() {
global $product;
$product_name = $product->get_name();
$product_url = $product->get_permalink();
$whatsapp_url = "https://api.whatsapp.com/send?text=I%20would%20like%20to%20order%20" . urlencode($product_name) . "%20" . urlencode($product_url);
echo '<a href="' . $whatsapp_url . '" class="button" target="_blank">Order via WhatsApp</a>';
}