-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPhoneQR.ocmod.xml
More file actions
16 lines (13 loc) · 820 Bytes
/
PhoneQR.ocmod.xml
File metadata and controls
16 lines (13 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<modification>
<name><![CDATA[→ Add QR code to easily phone customer]]></name>
<version>1.0/OC2</version>
<link>https://www.webstage.dev/support</link>
<author><![CDATA[<b><i class="fa fa-wrench"></i> Ivan Arnaudov • webstage.dev</b>]]></author>
<code>webstage_admin_qrphonetext</code>
<file path="admin/view/template/sale/order_info.tpl">
<operation>
<search><![CDATA[<a href="<?php echo $customer; ?>" target="_blank"><?php echo $firstname; ?> <?php echo $lastname; ?></a>]]></search>
<add position="after" offset="3"><![CDATA[<td rowspan="4" style="vertical-align: middle; width: 1%;"><img src="https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=tel%3A<?php echo urlencode($telephone); ?>"></td>]]></add>
</operation>
</file>
</modification>