add_action( 'woocommerce_before_shop_loop', 'add_whatsapp_button_mattress' ); function add_whatsapp_button_mattress() { if ( is_product_category( 'mattress' ) ) { $phone = '919820444744'; $message = rawurlencode( 'Hi I am interested in your mattresses' ); $url = 'https://wa.me/' . $phone . '?text=' . $message; printf( 'Chat on WhatsApp', esc_url( $url ) ); } }

Main Menu