You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1021 B
22 lines
1021 B
<?xml version='1.0' encoding='utf-8'?>
|
|
<odoo>
|
|
<!-- Inquire Button in Product Page-->
|
|
<template inherit_id='website_sale.product' id="whatsapp_inquiry"
|
|
name="Product Whatsapp Inquiry">
|
|
<xpath expr="//div[@id='add_to_cart_wrap']" position="after">
|
|
<div id="whatsapp_inquiry_wrap"
|
|
style="padding-left:0.2px;"
|
|
class="d-inline-flex align-items-center mb-2 me-auto"
|
|
t-if="bool(request.website.get_current_website().company_id.whatsapp_number)">
|
|
<a role="button" id="whatsapp_inquiry_link"
|
|
t-att-href="'/whatsapp/inquiry/%s' %(product_variant.id)"
|
|
class="btn btn-primary flex-grow-1 btn-lg"
|
|
style="background-color:#25D366;"
|
|
target="_blank">
|
|
<i class="fa fa-whatsapp mr-2"/>
|
|
<span style="font-weight: bold">INQUIRE</span>
|
|
</a>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|