Aimeos checkout onepage is not working - Laravel 5.4

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!
jdeleonferreira
Posts: 1
Joined: 27 Aug 2017, 02:54

Aimeos checkout onepage is not working - Laravel 5.4

Post by jdeleonferreira » 27 Aug 2017, 03:46

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"

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

Re: Aimeos checkout onepage is not working - Laravel 5.4

Post by aimeos » 28 Aug 2017, 14:41

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'],
					// ...
				),
			),
		),
	),
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply