Woocommerce WhatsApp Sipariş Ver Butonu
Wordpress Uzmanı
Erdinç Koç 402 Görüntüleme
Merhabalar wordpress woocommerce ile oluşturduğunuz sitelerinizde kredi kartı ile sipariş vermek yerine müşterilerinize whatsapp ile sipariş ver butonu eklemek istiyorsanız bunun için eklenti kullanmanıza gerek yok kısa bir kod ile nasıl whatsapp ile sipariş ver butonu eklemek için kullanmış olduğunuz temanızın functions.php dosyanıza aşşağıdaki kodu uygun yere ekleyin.
// WhatsApp Sipariş Butonu Ekleme Fonksiyonu function add_whatsapp_order_button() { // WhatsApp numaranızı buraya girin $whatsapp_number = '9053xxxxxxxx'; // Ürünün başlığı ve URL'si Al global $product; $product_title = $product->get_title(); $product_url = get_permalink($product->get_id()); // Mesaj şablonu $message = "Merhaba, $product_title ürününü sipariş vermek istiyorum. Ürün sayfası: $product_url"; // WhatsApp URL'si $whatsapp_url = 'https://wa.me/' . $whatsapp_number . '?text=' . urlencode($message); // Buton HTML'si echo '<a href="' . $whatsapp_url . '" class="button alt" target="_blank" style="background-color: #25D366; color: white; border: none; padding: 10px 20px; border-radius: 5px; text-decoration: none;">WhatsApp ile Sipariş Ver</a>'; } // WooCommerce ürün sayfasına butonu eklemek için aksiyon kullanımı add_action('woocommerce_single_product_summary', 'add_whatsapp_order_button', 30);