Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
5981 Widoki

is it possible to hide the prices of the variants? (example + 12 €)

Awatar
Odrzuć
Autor

Where can I change the info for the product pages of the different websites?

Najlepsza odpowiedź

Hi, It is possible to do this even out of the box without custom code. Please review the following Post.

https://www.odoo.com/forum/help-1/hide-extra-price-badge-on-website-228049

Awatar
Odrzuć
Najlepsza odpowiedź

you can try like this in odoo version 10:

in xml file

<data inherit_id="website_sale.product_variants">

      <xpath expr="//span[@class='badge']" position="replace">

        <span class="badge tr_hide" t-if="variant_id.price_extra">

          <t t-esc="variant_id.price_extra &gt; 0 and '+' or ''"/><span t-field="variant_id.price_extra" style="white-space: nowrap;" t-options="{                 &quot;widget&quot;: &quot;monetary&quot;,                 &quot;from_currency&quot;: product.currency_id,                 &quot;display_currency&quot;: website.currency_id               }"/>

        </span>

      </xpath>

    </data>

in css :

.tr_hide{

    display: none !important;

}


It will hide the price from variant


Awatar
Odrzuć
Najlepsza odpowiedź

Hello,

Yes, it is possible.

You can do that by append attribute "invisible" in the XML tag.

Check the following codes for hiding, the XML tags in Form, Tree, Kanban Views.

Code is working in my environment. Maybe some simple changes needed for working in your environment. (Mostly in Kanban view)

Anyway, you will get an idea about these things.


<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- for form-->
<record id="product_product_form_inherit" model="ir.ui.view">
<field name="name">product.product.form.inherit</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='lst_price']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
<xpath expr="//label[@for='standard_price']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
<xpath expr="//field[@name='standard_price']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
</field>
</record>
<!-- for tree-->
<record id="product_product_tree_inherit" model="ir.ui.view">
<field name="name">product.product.tree.inherit</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_product_tree_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='lst_price']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
<xpath expr="//field[@name='standard_price']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
</field>
</record>
<!-- for kanban-->
<record id="product_product_kanban_inherit" model="ir.ui.view">
<field name="name">product.product.kanban.inherit</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_kanban_view"/>
<field name="arch" type="xml">
<xpath expr="//div[@class='oe_kanban_details']/ul" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
</field>
</record>
</odoo>




Thanks & Regards

Avinash N K

Awatar
Odrzuć
Autor

I would like to do this only on the websites and not on odoo.

Autor

Where can I change the info for the product pages of the different websites?

Powiązane posty Odpowiedzi Widoki Czynność
3
maj 17
6476
7
mar 16
7478
0
gru 21
2016
1
mar 16
4459
2
sie 25
381