What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi everyone, Anyone has any idea regarding skip delivery and shipment step from the checkout steps.

U02J16E8CD7
U02J16E8CD7 Posts: 3 πŸ§‘πŸ»β€πŸš€ - Cadet

Hi everyone, Anyone has any idea regarding skip delivery and shipment step from the checkout steps. Is there any way to customize the default checkout steps ? I have a some specific type of products for this kind of products i want to skip the delivery and shipment option, When user click on checkout then it should be redirect on payment page.

Comments

  • USZ0XG6SK
    USZ0XG6SK Posts: 111 πŸ§‘πŸ»β€πŸš€ - Cadet
    edited August 2022

    Take a look at
    β€’ https://docs.spryker.com/docs/scos/dev/back-end-development/data-manipulation/datapayload-conversion/checkout/checkout-steps.html
    β€’ inside the project: src/Pyz/Yves/CheckoutPage/Process/StepFactory.php createStepCollection method
    β€’ each step implements StepInterface so you can take a look there as well, for example preCondition method

  • U02J16E8CD7
    U02J16E8CD7 Posts: 3 πŸ§‘πŸ»β€πŸš€ - Cadet

    Thanks @USZ0XG6SK!

  • U02J16E8CD7
    U02J16E8CD7 Posts: 3 πŸ§‘πŸ»β€πŸš€ - Cadet
    edited August 2022

    Hi @USZ0XG6SK, There is also need to fetch product type, I have checked there was no products type key , Can you please share more info regarding getting product type?

  • USZ0XG6SK
    USZ0XG6SK Posts: 111 πŸ§‘πŸ»β€πŸš€ - Cadet

    @U02J16E8CD7 preCondition accepts QuoteTransfer as a parameter. QuoteTransfer contains all quote items ItemTransfer[]
    You can extend the ItemTransfer to contain additional information you need (like type in your case) and do the checks you need.
    You might need to extend the add to cart logic as well to pass this additional information to the ItemTransfer (hint PreAddToCartPluginInterface )