Title: Change &#8220;Invoice&#8221; Text
Last modified: June 10, 2022

---

# Change “Invoice” Text

 *  Resolved [mdglenn](https://wordpress.org/support/users/mdglenn/)
 * (@mdglenn)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/change-invoice-text/)
 * I would like to be able to change the wording “Invoice” to “Quote” and have the
   invoice number reference the Woocommerece order number. Is that possible?

Viewing 1 replies (of 1 total)

 *  [moksha shah](https://wordpress.org/support/users/mokshasharmila13/)
 * (@mokshasharmila13)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/change-invoice-text/#post-15728723)
 * Hi [@mdglenn](https://wordpress.org/support/users/mdglenn/),
 * It is not possible to change the wording “Invoice” to “Quote” because it is difficult
   to replace it. And for the Invoice number reference to the WooCommerce order 
   number, please add the below code in your active theme’s functions.php file or
   use a plugin like Code Snippets:
 *     ```
       add_filter('wcdn_order_invoice_number', 'get_same_order_number', 10, 2);
       function get_same_order_number($invoice_number){
           global $wcdn;
       	if ( isset( $wcdn->print->orders ) ){
       		$order_id = key($wcdn->print->orders);
       		$order_obj = $wcdn->print->orders[$order_id];
       		$invoice_number = $order_obj->get_order_number();
       	}
       	return $invoice_number;
       }
       ```
   
 * To apply this fix on your site, please download the files from the below links
   and replace them with the mentioned path:-
    File path : WooCommerce-delivery-
   notes/includes/. File:- [https://www.dropbox.com/s/wpdrc6h0o8omd0g/class-wcdn-writepanel.php?dl=0](https://www.dropbox.com/s/wpdrc6h0o8omd0g/class-wcdn-writepanel.php?dl=0).
 * Please take a backup of the existing plugin before you replace the above files.
 * Regards,
    Moksha.
    -  This reply was modified 3 years, 11 months ago by [moksha shah](https://wordpress.org/support/users/mokshasharmila13/).

Viewing 1 replies (of 1 total)

The topic ‘Change “Invoice” Text’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-delivery-notes/assets/icon-256x256.jpg?rev=2829362)
 * [Print Invoice & Delivery Notes for WooCommerce](https://wordpress.org/plugins/woocommerce-delivery-notes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-delivery-notes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-delivery-notes/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-delivery-notes/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [moksha shah](https://wordpress.org/support/users/mokshasharmila13/)
 * Last activity: [3 years, 11 months ago](https://wordpress.org/support/topic/change-invoice-text/#post-15728723)
 * Status: resolved