payment description in stripe dashboard
-
Hi,
I need to change the Payment description in the stripe dashboard to include the customers billing name.
I used this filter in the functions.php, but it is not working when testing it with test mode:add_filter('wc_stripe_payment_intent_args', function($args, $order){ $args['description'] = sprintf('Order %1$s', $order->get_order_number(), $order->get_billing_first_name(), $order->get_billing_last_name()); return $args; }, 10, 2);
Could you help here?
Thanks, Tom
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘payment description in stripe dashboard’ is closed to new replies.