Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compability with Stripe module #807

Open
ademd opened this issue Jan 5, 2024 · 0 comments
Open

Compability with Stripe module #807

ademd opened this issue Jan 5, 2024 · 0 comments
Labels
compatibility Compatibility issues feature New feature or request

Comments

@ademd
Copy link

ademd commented Jan 5, 2024

Plugin/theme name

Stripe Magento 2 module

Pricing

Free

What problem does this feature solve?

The checkout page shows the following error and doesn't proceed the order.

"infinite loop detected review the trace for the looping path"

What should the solution look like?

There is a loop in your delivery options that cause this error. When you can change the following the problem will be solved, but this is the core Magento.

in file vendor/magento/module-checkout/Model/Session.php

Before :

                            if($quote->getTotalsCollectedFlag() === false)
                            {
                                $quote->collectTotals();
                            }

After :

                            if($quote->getTotalsCollectedFlag() === false)
                            {
                               // $quote->collectTotals();
                            }

Relevant log output

No response

Additional context

No response

@ademd ademd added compatibility Compatibility issues feature New feature or request labels Jan 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compatibility Compatibility issues feature New feature or request
Development

No branches or pull requests

1 participant