My customer has requested that I make the tags field (tags_id) invisible. The customer is using the CRM module in an Odoo Version 13 Enterprise installation.
I have extended views for several other modifications requested by this customer, but I have not been able to render the tags field invisible. I believe this may have to do with the fact tht this is a many2many field.
Here are some of the things I have tried in my extended view:
<xpath expr="//field[@name='tag_ids']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
<xpath expr="//field[@name='tag_ids']" position="replace">
<field name="tag_ids" widget="many2many_tags" options="{'color_field': 'color', 'no_create_edit': True}" invisible="1"/>
</xpath>
<xpath expr="//field[@name='tag_ids']" position="replace">
<field name="tag_ids" invisible="1"/>
</xpath>
<xpath expr="//field[@name='tag_ids']" position="replace"/>