• 12-04-2022, 11:50:45
    #1
    Eskiden çalışan şimdi çalışmıyor bende en kısa yöntem olarak başına numara eklemek istiyorum o zaman çalışıyor. Fakat nasıl ekleyeceğimi bilmiyorum.

    echo '<a target="_blank" href="https://wa.me/text? =' . $message . '">Bilgileri Whatsapp ile Gönder</a>';
    wa.me/telefonnumarasıtext? =

    bu araya başına 9 gelecek şekilde telefon numarası eklemem lazım.

    telefon numarası alabileceğim kod
    $order->get_billing_phone()
    bunu oraya nasıl yazdırabilirim?
  • 12-04-2022, 11:58:01
    #2
    echo '<a target="_blank" href="https://wa.me/+9'.$order->get_billing_phone() .'?text =' . $message . '">Bilgileri Whatsapp ile Gönder</a>';
  • 12-04-2022, 11:59:37
    #3
    echo '<a rel="nofollow noreferrer ugc" target="_blank" href="https://wa.me/?phone=9' . $order->get_billing_phone() . '&text=' . $message . '">Bilgileri Whatsapp ile Gönder</a>';
  • 12-04-2022, 12:01:24
    #4
    echo '<a target="_blank" href="https://wa.me/9'.$order->get_billing_phone().'?text=' . $message . '">Bilgileri Whatsapp ile Gönder</a>';
    bu şekilde yapınca oldu. Teşekkürler.