FOX - Currency Switcher for WooCommerce

Print Invoice & Delivery Notes for WooCommerce by tychesoftwares

URL del plugin: https://wordpress.org/plugins/woocommerce-delivery-notes/ En el archivo functions.php del tema actual de WordPress, añade el siguiente código:
add_action('wcdn_after_info', function ($order) {
    if ($order AND class_exists('WOOCS')) {
        global $WOOCS;
        $currency = $order->get_currency();
        if (!empty($currency)) {
            $WOOCS->current_currency = $currency;
        }
    }
});