Page 1 of 1

Aimeos checkout onepage is not working - Laravel 5.4

Posted: 27 Aug 2017, 03:46
by jdeleonferreira
I tried this config to set checkout to onepage, but it is not working. Can someone help me please.

Client/html/checkout/Standard/Standar.php
$onepage = $view->config( 'client/html/checkout/standard/onepage' , ['address','delivery','payment','summary']);
(Line 462)

System info
Laravel 5.4
"aimeos/aimeos-laravel": "~2017.07"

Re: Aimeos checkout onepage is not working - Laravel 5.4

Posted: 28 Aug 2017, 14:41
by aimeos
Works pretty well if you add this at the right position to your ./config/shop.php:

Code: Select all

	'client' => array(
		'html' => array(
			// ...
			'checkout' => array(
				'standard' => array(
					'onepage' => ['address','delivery','payment','summary'],
					// ...
				),
			),
		),
	),