Customize checkout page

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
ahmed31916
Advanced
Posts: 148
Joined: 14 Apr 2022, 12:15

Customize checkout page

Post by ahmed31916 » 06 Jun 2022, 11:52

Hello,

What the purpose of this config? can I ignore steps of payment and summary by this config?

Code: Select all

'client' => [ 'html' => [
	'checkout' => [
		'standard' => [
		     'onepage' => ['address', 'delivery','process'] , 
		],
	],
]]

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

Re: Customize checkout page

Post by aimeos » 07 Jun 2022, 16:07

You can't ignore steps but you can merge the content of the steps you've added to that configuration and then hide the blocks e.g. by CSS. The steps you can merge must be subsequent, so adding "process" won't work because "payment" and "summary" are between "delivery" and "process".
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
ahmed31916
Advanced
Posts: 148
Joined: 14 Apr 2022, 12:15

Re: Customize checkout page

Post by ahmed31916 » 15 Aug 2022, 22:10

I merge all the steps in one page, but it can't make an order.
It refresh the page but nothing change, why?

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

Re: Customize checkout page

Post by aimeos » 16 Aug 2022, 07:08

You can't merge all steps because "process" must still be on it's own. A valid configuration for the "onestep" setting would be:

Code: Select all

['address', 'delivery', 'payment', 'summary']
In that case, the basket won't update if the delivery/payment step add more costs or if the address would cause a change in shipping costs. Thus, a reasonable setting for "onestep" would be:

Code: Select all

['address', 'delivery', 'payment']
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply