Title: Order information fields
Last modified: December 9, 2024

---

# Order information fields

 *  Resolved [homeinsandiego](https://wordpress.org/support/users/homeinsandiego/)
 * (@homeinsandiego)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/order-information-fields/)
 * Is there a way to auto populate the Invoice # and put Order # in the Description
   fields as seen on Authorize.net virtual terminal?
 * Or at least add those fields in the manual payment input screen?

Viewing 1 replies (of 1 total)

 *  Plugin Author [bfl](https://wordpress.org/support/users/bfl/)
 * (@bfl)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/order-information-fields/#post-18188691)
 * The plugin currently puts the order number in the Invoice # field and the website
   name in the Description field.
 * As far as I’m aware, WooCommerce does not have a concept of an “invoice number”.
 * You can customize the data sent to Authorize.net using the `woo_mp_authorize_net_charge_request`
   filter, like so:
 *     ```wp-block-code
       /** @param \WC_Order $order */add_filter( 'woo_mp_authorize_net_charge_request', function ( $request, $order ) {    $request['createTransactionRequest']['transactionRequest']['order']['invoiceNumber'] = 'Put something else here...';    $request['createTransactionRequest']['transactionRequest']['order']['description'] = $order->get_order_number();    return $request;}, 10, 2 );
       ```
   
 * If you have some plugin that assigns invoice numbers to orders, you can put that
   where it says “Put something else here…”.

Viewing 1 replies (of 1 total)

The topic ‘Order information fields’ is closed to new replies.

 * ![](https://ps.w.org/woo-mp/assets/icon-128x128.png?rev=1596816)
 * [Backend Payments for WooCommerce](https://wordpress.org/plugins/woo-mp/)
 * [Support Threads](https://wordpress.org/support/plugin/woo-mp/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-mp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-mp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-mp/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [bfl](https://wordpress.org/support/users/bfl/)
 * Last activity: [1 year, 6 months ago](https://wordpress.org/support/topic/order-information-fields/#post-18188691)
 * Status: resolved