- Issue created by @solarDog
- πΊπΈUnited States solarDog
I was able to fix this by changing the following code in StripteWebformPaymentStripe.php:
Stripe::setApiKey($this->getApiSecret()); $products = Product::all()->data;
to this:
Stripe::setApiKey($this->getApiSecret()); $products = Product::all(['limit' => 100])->data;
- Status changed to Fixed
11 months ago 7:14pm 29 December 2023 - πΈπΎSyria hodba Dubai
Thank you solar for providing the fix.
I added temporarly this to the latest 1.x dev branch until providing permanent fix to loop through pages and get all product. Automatically closed - issue fixed for 2 weeks with no activity.