39 lines
2.0 KiB
XML
39 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Floating WhatsApp Button on Website Layout -->
|
|
<template id="layout_whatsapp_floating_button" inherit_id="website.layout" name="Floating WhatsApp Button">
|
|
<xpath expr="//footer" position="after">
|
|
<t t-if="website.whatsapp_enabled and website.whatsapp_button_floating and website.whatsapp_business_phone_number">
|
|
<div id="dine360_whatsapp_floating" class="dine360-wa-floating-container">
|
|
<a t-att-href="website.get_whatsapp_chat_url()"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="dine360-wa-floating-btn"
|
|
title="Chat with us on WhatsApp"
|
|
aria-label="Chat with us on WhatsApp">
|
|
<i class="fa fa-whatsapp fa-2x dine360-wa-icon"/>
|
|
<span class="dine360-wa-tooltip">Need help? Chat with us!</span>
|
|
</a>
|
|
</div>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
|
|
<!-- Product Page WhatsApp Inquiry Button -->
|
|
<template id="product_whatsapp_inquiry_button" inherit_id="website_sale.product" name="Product Page WhatsApp Button">
|
|
<xpath expr="//div[@id='add_to_cart_wrap']" position="after">
|
|
<t t-if="website.whatsapp_enabled and website.whatsapp_button_product_page and website.whatsapp_business_phone_number">
|
|
<div class="dine360-wa-product-wrap mt-3">
|
|
<a t-att-href="website.get_whatsapp_chat_url(product)"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="btn btn-outline-success btn-lg w-100 dine360-wa-product-btn d-flex align-items-center justify-content-center gap-2">
|
|
<i class="fa fa-whatsapp fa-lg"/>
|
|
<span>Chat on WhatsApp</span>
|
|
</a>
|
|
</div>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|