This Module will add WhatsApp button after client phone number under admin/order_info.twig, now you can contact to your clients easily on WhatsApp after one click.

Here is full XML : -


<?xml version="1.0" encoding="utf-8"?>
<modification>
  <code>WhatsApp Button</code>
  <name>Phone/WhatsApp Button</name>
  <version>3.0.0</version>
  <author>Aone Quality</author>
  <link>aonequality.in</link>
  <!-- =========================================================================
   | WhatsApp Button after customer phone number under order info
   | ======================================================================= -->
 
  <file path="admin/view/template/sale/order_info.twig">
    <operation>
        <search><![CDATA[<td>{{ telephone }}</td>]]></search>
        <add position="after"><![CDATA[<td><a href="https://wa.me/{{ telephone }}" target="_blank" class="btn btn-success btn-xs"><i class="fa fa-whatsapp fa-fw"></i> WhatsApp</a></td>]]></add>
            
 </operation>
</file>

</modification>