/*
Theme Name: Radios
Theme URI: http://underscores.me/
Author: themexriver
Author URI: http://themeforest.net/user/themexriver
Description: Radios - Electronics Shop WooCommerce Theme
Version: 1.0.5
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: radios
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
add_action('woocommerce_single_product_summary', 'hktech_whatsapp_product_button', 35);

function hktech_whatsapp_product_button() {
    global $product;
    $product_name = $product->get_name();
    $product_url = get_permalink();
    echo '<a href="https://wa.me/92133231087?text=I want to order: '.$product_name.' '.$product_url.'" target="_blank" style="display:inline-block;background:linear-gradient(135deg,#FFA500,#FFCC00);color:white;padding:12px 20px;border-radius:5px;text-decoration:none;font-weight:bold;margin-top:10px;">Order on WhatsApp</a>';
}