Show address subpart but hide delivery and payment

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
User avatar
loeffe1
Posts: 52
Joined: 21 Feb 2020, 10:33

Show address subpart but hide delivery and payment

Post by loeffe1 » 23 Feb 2022, 10:46

I am trying to only get a users email address during address step since that's all I require for non physical products. However I can't figure out how to only show the address, summary and process steps in checkout. As soon as I add the address step, delivery and payment steps are shown aswell, even though I have not included them within my subparts configuration. I f I try hiding them by setting ServicesUpdate in the plugin settings (using the Typo3 extension), I will get an error during checkout regarding missing service items. What am I doing wrong?

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

Re: Show address subpart but hide delivery and payment

Post by aimeos » 24 Feb 2022, 07:24

Can you post the configuration for your checkout steps?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
loeffe1
Posts: 52
Joined: 21 Feb 2020, 10:33

Re: Show address subpart but hide delivery and payment

Post by loeffe1 » 24 Feb 2022, 11:20

Code: Select all

checkout {
  standard {
    standard {
      subparts {
        0 = address
        1 = summary
        2 = process
      }
    }
  }
}

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

Re: Show address subpart but hide delivery and payment

Post by aimeos » 24 Feb 2022, 11:23

Which Aimeos version do you use?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
loeffe1
Posts: 52
Joined: 21 Feb 2020, 10:33

Re: Show address subpart but hide delivery and payment

Post by loeffe1 » 01 Mar 2022, 08:50

Sorry for the late reply. I am using version 21.10.4

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

Re: Show address subpart but hide delivery and payment

Post by aimeos » 03 Mar 2022, 08:45

The correct configuration for 2021.10 is:

Code: Select all

checkout {
  standard {
      subparts {
        0 = address
        1 = summary
        2 = process
      }
  }
}
We've simplified all configuration keys and removed the "standard" part:
https://aimeos.org/docs/2021.x/frontend ... kout-steps
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
loeffe1
Posts: 52
Joined: 21 Feb 2020, 10:33

Re: Show address subpart but hide delivery and payment

Post by loeffe1 » 04 Mar 2022, 10:06

I see. Thanks for the clarification

Post Reply