/**
* Prevent StellarPay from crashing when Stripe returns a null email.
* Adds a fallback email or empty string before the response reaches CustomerDTO.
*/
add_filter( 'http_response', function( $response, $r, $url ) {
// Only run for StellarPay Stripe API calls
if ( is_string( $url ) && strpos( $url, 'api.stripe.com' ) !== false ) {
$body = wp_remote_retrieve_body( $response );
$data = json_decode( $body, true );
if ( is_array( $data ) && isset( $data['object'] ) && $data['object'] === 'customer' ) {
// If email is missing or null, inject a safe default
if ( ! isset( $data['email'] ) || $data['email'] === null ) {
// You can make this a blank string or a dummy value
$data['email'] = '';
}
// Re-encode the modified response
$response['body'] = wp_json_encode( $data );
}
}
return $response;
}, 10, 3 );
KIKO Milano — شيك سوق
عرض قائمة الرغبات
“أحمر الشفاه بيرفكت روج الجديد من شيسيدو” has been added to your wishlist
سلة التسوق الخاصة بك فارغة
يمكنك تصفح جميع المنتجات المتاحة والشراء من المتجر.
العودة إلى المتجر

السعودية