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.
 
 
 
 
 

27 lines
1.0 KiB

<?xml version = "1.0" encoding = "UTF-8" ?>
<odoo>
<!-- If not logg-in user then hide Add To Cart Button -->
<template id="product" inherit_id="website_sale.product">
<xpath expr="//a[@id='add_to_cart']" position="attributes">
<attribute name="t-if">
login_user == True
</attribute>
</xpath>
</template>
<!-- If not logg-in user then hide product quantity -->
<template id="product_quantity" inherit_id="website_sale.product_quantity">
<xpath expr="//div[hasclass('css_quantity')]" position="attributes">
<attribute name="t-if">
login_user == True
</attribute>
</xpath>
</template>
<!-- If not logg-in user then hide product price -->
<template id="product_price" inherit_id="website_sale.product_price">
<xpath expr="//div[@itemprop='offers']" position="attributes">
<attribute name="t-if">
login_user == True
</attribute>
</xpath>
</template>
</odoo>