• Hello Thank for the nice app.

    I have used it for one month now. In my checkout page the billing first name, last name and email address is enable and in shipping only country is enable. Because on whatsapp message in customer detail I received the name and email address. But now the customer details is blank. See below

    BEfore:
    Customer Details
    Joe Doe

    [email protected]

    Total: xxxx

    Now:
    Customer Details

    Total: xxx

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • i have same problem here

    up

    PLEASE TRANSLATE: SPANISH

    Editar:
    wp-content/plugins/oneclick-whatsapp-order/includes/buttons/wa-order-thank-you.php

    Entre la linea 265 a 280 debajo de // Check if customer purchase note exits

    Espesificamente $message.= urlencode("".$payment."\r\n*".$customer_details."*\r\n");
    Debes agregar estos campos

    $message.= urlencode(“- Cliente: “.$first_name.”\r\n”);
    $message.= urlencode(“- Dirección: “.$adress_1.”\r\n”);
    $message.= urlencode(“- Referencia: “.$adress_2x.”\r\n”);
    $message.= urlencode(“- Telefono “.$customer_phone.”\r\n”);
    Sustituirlo por el campo que desea mostrar

    A mi me quedo asi

     $message.= urlencode("".$payment."\r\n*".$customer_details."*\r\n");
            $message.= urlencode("- Cliente: ".$first_name."\r\n");
            $message.= urlencode("- Dirección: ".$adress_1."\r\n");
            $message.= urlencode("- Referencia: ".$adress_2x."\r\n");
      $message.= urlencode("- Telefono ".$customer_phone."\r\n");
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customer detail show blank’ is closed to new replies.