FOX - Currency Switcher for WooCommerce

Invoices for WooCommerce

Plugin-URL: https://wordpress.org/plugins/woocommerce-pdf-invoices/ In der Datei wp-content\plugins\woocommerce-pdf-invoices\includes\woocommerce-pdf-invoices.php fügen Sie folgenden Code hinzu:
if (class_exists("WOOCS")) {
    global $WOOCS;
    $currency = get_post_meta($order_id, '_order_currency', TRUE);
    if (!empty($currency)) {
        $WOOCS->current_currency = $currency;
    }
}