Customize checkout page
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!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
- ahmed31916
- Advanced
- Posts: 148
- Joined: 14 Apr 2022, 12:15
Customize checkout page
Hello,
What the purpose of this config? can I ignore steps of payment and summary by this config?
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'] ,
],
],
]]
Re: Customize checkout page
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,
give us a star
If you like Aimeos,

- ahmed31916
- Advanced
- Posts: 148
- Joined: 14 Apr 2022, 12:15
Re: Customize checkout page
I merge all the steps in one page, but it can't make an order.
It refresh the page but nothing change, why?
It refresh the page but nothing change, why?
Re: Customize checkout page
You can't merge all steps because "process" must still be on it's own. A valid configuration for the "onestep" setting would be:
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', 'summary']
Code: Select all
['address', 'delivery', 'payment']
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
