تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
5 الردود
12580 أدوات العرض

Hello there,
I had to recreate the public user in one server.

How could I hide this menu item public user - AS when nobody is logged on the website?

Thanks to help. 

الصورة الرمزية
إهمال

use record rule perhaps?

أفضل إجابة

https://youtu.be/zHPtb1SR8Sk

الصورة الرمزية
إهمال
أفضل إجابة

you can try this module 

https://github.com/OCA/website/blob/9.0/website_menu_by_user_status


in short just check  request.uid == %(base.public_user)d



<t-if="request.uid == %(base.public_user)d)"> put you code here </t>

الصورة الرمزية
إهمال
أفضل إجابة

This I found to work in odoo V12.

<template id="search_directory"name="Online Directory Search"inherit_id="portal.frontend_layout">	​    <xpathexpr="//ul[@id='top_menu']/li[1]"position="after"><ahref="/search"role="menuitem"groups="base.group_user,online_directory.od_basic_search"class="nav-link">Online Directorya>
xpath>
template>
الصورة الرمزية
إهمال
أفضل إجابة

You can set groups (internal user & portal user) for the website menu in order to hide the menu for public user when not logged in.

Example:

name="group_ids" eval="[(4, ref('base.group_user')), (4, ref('base.group_portal'))]"

الصورة الرمزية
إهمال
الكاتب أفضل إجابة

Our answer. hanks everybody.


<template id="layout_iv" inherit_id="website.layout" >

<xpath expr="//li[@class='dropdown']" position="replace">

<t t-if="request.uid != %(base.public_user)d">

<li class="divider" t-ignore="true" t-if="website.user_id != user_id"/>

<li class="dropdown" t-ignore="true" t-if="website.user_id != user_id">

<a href="#" class="dropdown-toggle" data-toggle="dropdown">

<b>

<span t-esc="user_id.name"/>

<span class="caret"></span>

</b>

</a>

<ul class="dropdown-menu js_usermenu" role="menu">

<li><a href="/web" role="menuitem">My Account</a></li>

<li class="divider"/>

<li><a t-attf-href="/web/session/logout?redirect=/" role="menuitem">Logout</a></li>

</ul>

</li>

</t>

</xpath>

</template>

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
2
فبراير 24
14080
1
فبراير 16
4487
1
أغسطس 15
7110
4
يناير 23
25967
3
ديسمبر 22
6812