18 lines
		
	
	
		
			829 B
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			829 B
		
	
	
	
		
			XML
		
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <odoo>
 | |
|     <record id="view_website_config_settings" model="ir.ui.view">
 | |
|         <field name="name">Multi-Website settings</field>
 | |
|         <field name="model">res.config.settings</field>
 | |
|         <field name="inherit_id" ref="website.res_config_settings_view_form"/>
 | |
|         <field name="arch" type="xml">
 | |
|             <xpath expr="//field[@name='website_id']" position="attributes">
 | |
|                 <attribute name="invisible"></attribute>
 | |
|             </xpath>
 | |
|             <xpath expr="//button[@name='multi_theme_reload']" position="attributes">
 | |
|                 <attribute name="string">Reload Theme List & Update all websites</attribute>
 | |
|                 <attribute name="context">{'skip_converting_assets': True}</attribute>
 | |
|             </xpath>
 | |
|         </field>
 | |
|     </record>
 | |
| </odoo>
 |