Help

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

How to hide or re-position the chatter pane

Avatar
odoo
1 Comment
Avatar
Discard
Avatar
odoo
-

Is it available for 14.0?

7 Answers
0
Avatar
odoo
Best Answer

Just Zoom in and Zoom out your browser, The chatter will move down if you zoom in. It actually depends upon the screen resolution.

Avatar
Discard
0
Avatar
odoo
Best Answer

Matt,

It depends on the size of your screen. You can do Zoom in and Zoom out to find the changing of Chatter Position side and down automatically.


Zoom In


Zoon Out




Avatar
Discard
0
Avatar
odoo
Best Answer

yes it's very simple, you can just add this line in css

.o_form_view { flex-direction: column !important;}.

Avatar
Discard
0
Avatar
odoo
Best Answer

@Moto Dzae, There is many ways to Move the chatter to bottom in odoo 14 and here is one of them:

- Create a new Module and name it "whatever you want"

- Create a new .css File under Static/src/css/name_of_your_file.css

- In that File insert the following Code:

/* Move Chatter to bottom */
.o_FormRenderer_chatterContainer.o-aside {
width: -webkit-fill-available;
margin-bottom: 50px;
}

/* Move Chatter to bottom */
.o_form_view.o_xxl_form_view {
-webkit-flex-flow: unset;
flex-flow: wrap;
height: auto! important;
}

- Create a new .xml File the name it assets.xml and insert this File in the Manifest of the Module under data => 'data': ['views/assets.xml',]

- inherit from web.assets_backend and link your css file as stylesheet like this https://github.com/odoo/odoo/blob/14.0/addons/google_drive/views/google_drive_templates.xml#L4

- inside the tag insert your module name and the path to your css file.

Now install that Module and Enjoy the Chatter being in the Bottom

Hope That helps you all out
Avatar
Discard
0
Avatar
odoo
Best Answer

Hi Matt,

Did you finally manage to change the position of the chatter?

2 Comments
Avatar
Discard
Avatar
odoo
-

Yes, we did change the position. The hack was ugly, but it works. It involved changes to the following files:

- web_enterprise/static/src/scss/form_view.scss

- web_enterprise/static/src/scss/primary_variables.scss

Avatar
odoo
-

@Matt Taylor, how did you do it?

0
Avatar
odoo
Best Answer

It depends on the size of the screen, when your screen resolution high, it will go on the right:



when it is low, it will go bottom:






1 Comment
Avatar
Discard
Avatar
odoo
-

The web_responsive module (12.0) adds a user preference setting "Chatter Position". The user can choose Normal, or Sided. In Community Edition, it works. In Enterprise Edition, it does not work. So, I'm looking for a module like web_responsive, but that works with Enterprise v12.

0
Avatar
odoo
Best Answer

HI,

Below APP will help you to move your Chatter Position from Left-Side to Bottom in Enterprise/Community ODOO.

https://apps.odoo.com/apps/modules/14.0/ob_chatter_position/

Thanks & Regards
Sunny Sheth 

7 Comments
Avatar
Discard
Avatar
odoo
-

Hello Sunny, do you have any knowledge on this module. I just installed on Odoo 14.0 and it is giving error messages, and doesn't allow the functionality to move the chatter pane.

Thanks.

Avatar
odoo
-

Hi Christopher,
I already using that module on a server and working very well as described functionality.

Do u have latest ODOO code?

Avatar
odoo
-

Hello Sunny,

I see the module authors include Odoo Community Association (OCA)

Is it a mistake or is it based on an actual OCA addon? I don't see this module on the OCA repositories on github.
Can you fix it?

Thanks,
Yannick

Avatar
odoo
-

Yannick,

that can be taken care by that module author not by me.

Thanks

Avatar
odoo
-

I have my answer.

The code was most likely copied from OCA module web_responsive where the feature was implemented in 2018
https://github.com/OCA/web/commit/e5e109ece655ae4cfb2a81e9eb130852eb106554

@Sunny you can use this code and push it to apps.odoo.com but you must keep the license to AGPL and keep the license headers on the files.

Avatar
odoo
-

Oh thus it's a misunderstanding, I though you were linked with Odoo Being. I'll contact them.

Avatar
odoo
-

Thank You Yannick

I just help here to give that module link for usability.

(that module belongs to another person, you can contact them and ask them your thought)

Thank You!