The module will be updated soon with this fix:
in: includes/payment/stripe_sca.php, replace lines 179-189 with this code:
Code: Select all
$address = [
'address_line1' => $GLOBALS['customer_data']->get('street_address', $order->billing),
'address_city' => $GLOBALS['customer_data']->get('city', $order->billing),
'address_zip' => $GLOBALS['customer_data']->get('postcode', $order->billing),
'address_state' => $GLOBALS['customer_data']->get('state', $order->billing),
'address_country' => $GLOBALS['customer_data']->get('country_iso_code_2', $order->billing),
];
foreach ($address as $k => $v) {
$content .= '<input type="hidden" id="' . Text::output($k) . '" value="' . Text::output($v ?? '') . '" />';
}