Thursday, February 26, 2026
3 changes
1 change
Features or functions removed from Odoo
This update removes unnecessary call buttons from the AI-powered live chat feature. This simplifies the user interface and improves the overall experience for users interacting with the AI agent. The change addresses a minor usability issue.
Original PR description
This commit will remove call buttons in livechat with ai agent. Task-5932845 Forward-Port-Of: odoo/enterprise#108444
2 changes
Features or functions removed from Odoo
This update removes the call buttons from the AI-powered live chat feature. This change simplifies the user interface and improves the overall experience for users interacting with the AI agent. It addresses a minor usability issue.
Original PR description
This commit will remove call buttons in livechat with ai agent. Task-5932845 Forward-Port-Of: odoo/enterprise#108444
This update removes unnecessary URLs from Odoo's tour scripts, streamlining the onboarding process. Previously, these URLs triggered unwanted redirects, wasting user time and resources. The change simplifies the tour setup and ensures a smoother user experience.
Original PR description
The URL key in a tour's JavaScript file implies a redirect to that URL once the browser opens. If this URL is the same as the one used in `start_tour()` (Python), then it serves no purpose. It's even detrimental because it implies a redirect (and therefore a waste of time). The URL key in the JS file is (for now) only used for onboarding tours. This key will be defined later in the .xml file for onboarding tours. That's why we're removing the URL keys from the registries here.