Title: Order currency code
Last modified: May 7, 2021

---

# Order currency code

 *  Resolved [airtite](https://wordpress.org/support/users/airtite/)
 * (@airtite)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/order-currency-code/)
 * Hi. Thanks for the great plugin.
 * Is there a way to get the three letter currency code (i.e. EUR) that the order
   was placed in in a template?
 * Thanks.

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Yordan Soares](https://wordpress.org/support/users/yordansoares/)
 * (@yordansoares)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/order-currency-code/#post-14418202)
 * Hello [@airtite](https://wordpress.org/support/users/airtite/),
 * Try adding this code snippet to your site:
 *     ```
       add_action( 'wpo_wcpdf_before_html', function ( $document_type, $document ) {
       	add_filter( 'woocommerce_currency_symbol','wpo_wcpdf_currency_symbol_text', 999, 2);
       }, 10, 2 );
       add_action( 'wpo_wcpdf_after_html', function ( $document_type, $document ) {
       	remove_filter( 'woocommerce_currency_symbol','wpo_wcpdf_currency_symbol_text', 999, 2);
       }, 10, 2 );
       function wpo_wcpdf_currency_symbol_text( $currency_symbol, $currency ) {	
       		$currency_symbol = $currency;
       	return $currency_symbol;
       }
       ```
   
 * Let me know if it worked 😉

Viewing 1 replies (of 1 total)

The topic ‘Order currency code’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-256x256.
   png?rev=2189942)
 * [PDF Invoices & Packing Slips for WooCommerce](https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Yordan Soares](https://wordpress.org/support/users/yordansoares/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/order-currency-code/#post-14418202)
 * Status: resolved