Select Page

My account

Login

Register

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.

add_action('woocommerce_after_add_to_cart_button', 'add_whatsapp_button'); function add_whatsapp_button() { $product = wc_get_product(get_the_ID()); $product_name = $product->get_name(); $whatsapp_number = '+8801817043086'; // Replace with your number $whatsapp_link = 'https://wa.me/' . $whatsapp_number . '?text=' . rawurlencode("I am interested in the product: $product_name"); echo 'Chat on WhatsApp'; }