FOX - Currency Switcher for WooCommerce

Invoices for WooCommerce

URL del plugin: https://wordpress.org/plugins/woocommerce-pdf-invoices/ En el archivo wp-content\plugins\woocommerce-pdf-invoices\includes\woocommerce-pdf-invoices.php añade el siguiente código:
if (class_exists("WOOCS")) {
    global $WOOCS;
    $currency = get_post_meta($order_id, '_order_currency', TRUE);
    if (!empty($currency)) {
        $WOOCS->current_currency = $currency;
    }
}