Title: Statement Descriptor
Last modified: May 20, 2025

---

# Statement Descriptor

 *  Resolved [fwlw](https://wordpress.org/support/users/fwlw/)
 * (@fwlw)
 * [1 year ago](https://wordpress.org/support/topic/statement-descriptor-6/)
 * Hi.
 * How can I pass order number or invoice number to the Statement Descriptor?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [1 year ago](https://wordpress.org/support/topic/statement-descriptor-6/#post-18474970)
 * Hi [@fwlw](https://wordpress.org/support/users/fwlw/)
 * Here is an example of how to modify the statement descriptor:
 *     ```wp-block-code
       add_filter('wc_stripe_payment_intent_args', function($args, $order){	if ( \in_array( 'card', $args['payment_method_types'] ) ) {		$args['statement_descriptor_suffix'] = 'Company' . $order->get_order_number();	}else{		$args['statement_descriptor'] = 'Company' . $order->get_order_number();	}	return $args;}, 10, 2);
       ```
   
 * You can modify this example for your specific company name, etc.
 * Kind Regards
 *  Thread Starter [fwlw](https://wordpress.org/support/users/fwlw/)
 * (@fwlw)
 * [1 year ago](https://wordpress.org/support/topic/statement-descriptor-6/#post-18474987)
 * Thanks. Is this also the descriptor the payer will see on his bank account?
 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [1 year ago](https://wordpress.org/support/topic/statement-descriptor-6/#post-18474994)
 * Hi [@fwlw](https://wordpress.org/support/users/fwlw/)
 * > Is this also the descriptor the payer will see on his bank account?
 * Yes, the descriptor is what your customer sees on their bank transaction.
 * Kind Regards

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Statement Descriptor’ is closed to new replies.

 * ![](https://ps.w.org/woo-stripe-payment/assets/icon-256x256.png?rev=2611337)
 * [Payment Plugins for Stripe WooCommerce](https://wordpress.org/plugins/woo-stripe-payment/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-stripe-payment/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-stripe-payment/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-stripe-payment/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-stripe-payment/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-stripe-payment/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * Last activity: [1 year ago](https://wordpress.org/support/topic/statement-descriptor-6/#post-18474994)
 * Status: resolved