Customize automated user creation on checkout

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Mightrider
Posts: 15
Joined: 05 Apr 2018, 10:26

Customize automated user creation on checkout

Post by Mightrider » 11 Jul 2018, 09:40

Hi there,

I try to customize the user creation during the checkout process.
Currently the columns of 'username' and the 'user_group_id' are empty.
I would like to set a default user group and found something in the configuration, but it is not working as expected. The user group is still empty.

Code: Select all

	'client' => [
		'html' => [
			'checkout' => [
				'standard' => [
					'order' => [
						'account' => [
							'standard' => [
								'groupids' => [
									'2'
								],
								'user_group_id' => [ // thats the name of the column in the database
									'3'
								],
							],
						],
					],					
				],
			],
		],
	],
For the username i just want to use the email-address. Is there a way to achieve that?


Thank you in advance for your support!

Local installation, MacOS High Sierra
php: 7.1.4,
laravel/framework: 5.4,
aimeos/aimeos-laravel: 2018.04

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

Re: Customize automated user creation on checkout

Post by aimeos » 12 Jul 2018, 12:17

The configuration setting for this changed. Use https://aimeos.org/docs/Configuration/C ... r/groupids instead
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply