Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
1459 Visninger

I want to hide my events page to only people who are portal and internal users. how can i do this.

Avatar
Kassér
Bedste svar

Hi,


The function shown below can be used to hide menus on websites:


    def _compute_visible(self):

        super()._compute_visible()

        self.env.registry.clear_cache('templates')

        for menu in self:

            visible = True

            if menu.name == 'Events':  # Assuming 'Events' is the name of your events page menu

                if self.env.user.has_group('base.group_portal') or not self.env.user.share:

                    visible = False

            menu.is_visible = visible


Hope it helps

Avatar
Kassér
Forfatter

Thanks. Does this work on the odoo online version

Related Posts Besvarelser Visninger Aktivitet
0
okt. 24
1727
0
maj 24
3308
3
mar. 15
9324
4
maj 25
2964
0
aug. 24
1160