Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
2 Besvarelser
3094 Visninger

I am trying to make the website shop only accessible to customers who have a log in. Alternatively, prices should only be available to members who have a log in. Is this possible?


Many thanks for any help

Avatar
Kassér

Hello,

Yes, you can show the product price to only log in users.
You need to take some changes from coding side.

Thanks,
shivoham.odoo@gmail.com

Forfatter

Thank you so much for your help

Bedste svar

Hi,

Yes it is possible. You need to override the shop route and give auth='user'. Eg: 
@http.route([
        '/shop',
        '/shop/page/',
        '/shop/category/',
        '/shop/category//page/',
    ], type='http', auth="user", website=True, sitemap=sitemap_shop)
def shop():
     return super().shop() 

Hope it helps

Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
1
sep. 24
1425
2
jan. 23
6838
0
feb. 21
2728
0
mar. 17
3687
1
dec. 16
4634