Thank you very much!
It works exactly as desired!
Here is my finished code:
add_filter('wc_stripe_payment_intent_args', function($args, $order){
$name = $order->get_billing_first_name().' '.$order->get_billing_last_name();
$nummer = $order->get_id();
$mail = $order->get_billing_email();
$args['description'] = $name.' - '.$nummer.' - '.$mail;
return $args;
}, 10, 2);
Helpful link to the Order object
Thank you and see you soon
See my message before this:
Hi,
I have noticed another problem with autofocus. On the mobile version, unfortunately, the autofocus still does not work.
Thanks a lot
Thank you very much! This has worked wonderfully!