Code Required error when registering

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!
User avatar
sica-d
Posts: 10
Joined: 15 Dec 2022, 09:00

Re: Code Required error when registering

Post by sica-d » 19 Dec 2022, 15:19

aimeos wrote: 19 Dec 2022, 14:34 Maybe it must be:

Code: Select all

use Illuminate\Support\Facades\Request;
Not bad for a days work (well, you did all of it...)
Thank you. Its working now!

TGergo
Posts: 41
Joined: 24 Nov 2022, 14:35

Re: Code Required error when registering

Post by TGergo » 17 Feb 2023, 15:14

Bug. When billing 'order.base.address.languageid' is null, then Registration email will not be sent out.

this is the problem:

Code: Select all

$helper = new \Aimeos\Base\View\Helper\Translate\Standard( $view, $this->context()->i18n( $langId ?: 'en' ) );
I don't have 'en' language.

must be recorded in shop.php

Code: Select all

'client' => [
	'html' => [
		'checkout' => [
                	'standard' => [
                        	'address' => [
                            		'billing' => [
  				        	'hidden' => [
		                                       'order.base.address.languageid'
						],
					....

Post Reply