Implementing a One Page 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!
Amir
Posts: 13
Joined: 15 Feb 2020, 16:30

Implementing a One Page Checkout

Post by Amir » 20 Feb 2020, 01:41

I want to implement a one page checkout and what I did was:

Code: Select all

	'checkout' => [
				'standard' => [
					'onepage' => ['address','payment']
				                         ]
				],
but when I click checkout it goes to a page called checkout where all process are there ( I don't want this page) but when I click one address it takes me to a page where there is a address form and a payment method and when I click next it takes me to a shipping page and then a summary page where I want to skip the both. I want to skip them both. How to achieve that?

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

Re: Implementing a One Page Checkout

Post by aimeos » 20 Feb 2020, 15:57

The right configuration is:

Code: Select all

'client' => [
	'html' => [
		'checkout' => [
			'standard' => [
				'onepage' => ['address', 'delivery', 'payment', 'summary']
			]
		]
	]
]
https://aimeos.org/docs/Configuration/C ... kout_steps
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply