Solved Non-recurring Stripe payments are always "Guest"

This topic has been solved
D

DragonByte Tech

Guest
This is due to the fact that the customer parameter is only set if the purchase is recurring.

The fix:

Diff:

Code:
Index: src/XF/Payment/Stripe.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/src/XF/Payment/Stripe.php b/src/XF/Payment/Stripe.php
--- a/src/XF/Payment/Stripe.php
+++ b/src/XF/Payment/Stripe.php
@@ -336,15 +336,15 @@
                 throw...

Read more

Continue reading...