How can we identify the user group for a particular user in front end profile page

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
unnimaya-seeroo
Posts: 10
Joined: 20 Jun 2023, 07:00

How can we identify the user group for a particular user in front end profile page

Post by unnimaya-seeroo » 07 Dec 2023, 14:38

Environment:
Aimeos 2023.04
Laravel 10
Windows
How can we identify the user group for a particular user in front end profile page?

User avatar
aimeos
Administrator
Posts: 7895
Joined: 01 Jan 1970, 00:00

Re: How can we identify the user group for a particular user in front end profile page

Post by aimeos » 10 Dec 2023, 10:52

You can check if the logged in user has the group assigned in the templates if you use:

Code: Select all

if( $this->access( ['<group code>'] ) ) {
}
// or one of several groups
if( $this->access( ['<group code 1>', '<group code 2>'] ) ) {
}
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star


Post Reply