Odoo - how to hide conversations icon in menu bar - odoo

I'm customizing odoo community v14 
We don't use the discuss module but it was installed by other modules we use, so I've removed the 'Discuss' menu item, but I can't find how to remove the conversions icon just at the left of were the the activity  icon  and  user name is shown.
I found a response for a similar question in odoo forum but I couldn't find the code of this icon in addons/mail/static/src/xml/systray.xml only the code of activity icon is present
I searched for some parts of the html code in entire odoo source code but with no result
Any help please?

I did it using css by adding li.o_MessagingMenu{display: none !important;} to addons/web/static/src/scss/navbar.scss

Related

Odoo CRM Lead - partner_id weird behavior

I've 2 instances of Odoo v13 Enterprise which present the same problem. When I click on the many2one field, the edit view opens on the bottom of the page, not on the field.
I've tried to uninstall all addons that inherit that view. Remove res_partner_many2one_widget , context and nothing change this behavior, I've tried to replicate it on other modules but cannot. I'm currently looking for the JS that manipulate that form view to see if a get the bug.
Have anybody encountered this behavior on Odoo?
Thanks

How to disable or hide WhatsApp Web Sidebar?

I have tried the solution provided [here][1]
[1]: https://webapps.stackexchange.com/questions/119105/how-can-i-toggle-or-shrink-the-whatsapp-web-sidebar which doesn't seem to work now. Could be due to the changes over the years.
Is there way to hide or close the sidebar that shows the contacts and conversations? Just surprised that WhatsApp doesn't offer this option directly.
If you want to disable/hide the sidebar, open Inspect tools and search id="side" and select its parent div and on elements.style write the following css:
display : none
If you want to unhide the sidebar just remove css or deselect it.

new category appears near home page tite, why?

I installed PrestaShop 1.7.1.2 and I added many categories, one of them appears on the top menu of the front page, only a specific one of them. I don't know why, I didn't add any products to it.
you can see it by browsing to prestashop.tux-in.com and near the CLASSIC title which is a link to the homepage, DIFFERENT HOLDERS is also shown there which is an empty category. what am I missing? why is this category alone is shown there?
how can I remove it ?
It seems it coming from top horizontal menu module, please check it in admin under module section and remove it.

Ektron PageBuilder - define default name for custom widget

I'm hoping this is a simple question. I have a custom widget. Let's say it is "SuperAwesomeWidget.ascx". When I'm editing a PageBuilder wireframe, I can see my widget in the little pulldown widget tray at the top of the screen. Thing is, the name under my icon is "SuperAwesomeWidget".
Now, I know that I can go to the widgets settings in the WorkArea and define a custom name, but what if I want Ektron to just "know" what the name should be? I'm hoping there is some config file somewhere that I can add my widget name to. I'd like to be able to drop this widget along with maybe a config file or something into a second Ektron install and not need to define the name via the workarea.
For anyone in the future googling this issue, there is a better answer than my previous one, particularly better than a workarea modification.
To update the display title of a widget in the widget bar:
Go to Workarea > Settings > Configuration > Personalization > Widgets
Find your widget in this list and click the edit icon to the left of its name
Modify the display title in the second text field in the modal that pops up.
Confirmed working in 8.6.1, likely works in all 8+ versions.
Edit: While this answer is still partially correct, I have discovered the actual way to do this. The correction has been marked as the accepted answer.
Set your IWidgethost's title property:
IWidgetHost _host;
...
_host.Title = "Hello World Widget";
From the esteemed eGandalf's tutorial on widget development:
http://www.ektron.com/Blogs/eGandalf/Break-it-down!-Widget-Development-How-To-(Part-1)/

Joomla - Overlapping of modules required

I had to create a custom menu for the template we chose as the links were supposed to be added over a image. I have a header image which is called in as a module. When I select mod_mainmenu, the menu shows over the header image. However when I disable the mod_mainmenu and select the custom html mod , they come below the header image.
I need it also to come as the menu. Which will resolve the issue.
www.diaryboard.com/ship
This is the link. Could someone help me on this.
Regards
Edward
The first problem I see is in your template.css file on line 672 -
height: 448pxx;
Fix this typo first. You could probably do without the absolute positioning for the logo, but the typo will probably make the page look right.