Viewing 15 replies - 1 through 15 (of 17 total)
  • Hi @vsplven,

    Try enabling the Extended currency symbol support option under WooCommerce > PDF Invoices > General tab.

    Let me know if it works!

    Thread Starter vsplven

    (@vsplven)

    Dear Team,

    Already Tick but not working

    See the screenshots here –https://www.dropbox.com/s/00wrd19pylor4ne/Extended%20currency%20symbol%20support.PNG?dl=0

    Thanks & Regards,
    Tech Team

    Thread Starter vsplven

    (@vsplven)

    Dear Team,

    We have already enabled that, but it is not displaying. This issue we are are noticing recently in a month or so, earlier symbol was appearing, but the spacing issue is from beginning. Need to fix both on urgent basis, as you know without the symbol the invoice becomes invalid as our site run on multi-currency.

    See the screenshots here –https://www.dropbox.com/s/00wrd19pylor4ne/Extended%20currency%20symbol%20support.PNG?dl=0

    Thanks & Regards,
    Tech Team

    Thread Starter vsplven

    (@vsplven)

    Dear Team,

    Please reply

    Plugin Contributor dwpriv

    (@dwpriv)

    @vsplven

    What currency is used for this order? Does this error happen with all currencies?

    Thread Starter vsplven

    (@vsplven)

    This issue is for INR (Rupee) symbol, $ symbol is appearing fine. But, our site mainly operates in INR territory so it is very critical. Please help fix.

    Plugin Contributor dwpriv

    (@dwpriv)

    @vsplven

    Please disable this setting WooCommerce > PDF Invoices > General > Extended currency symbol support and add the code snippet below to your theme functions.php file:

    add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles', 10, 2 );
    function wpo_wcpdf_custom_styles ( $document_type, $document ) {
        ?>
        body {
    		font-family: DejaVu Sans; sans-serif;
    	}
        <?php
    }

    If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters

    Let me know if it works.

    Thread Starter vsplven

    (@vsplven)

    Thanks, that code worked. Now, it is displaying the INR symbol properly.

    Can you please also help adding the space between “Vendor” and “Vendor Name”; as we raised in the thread earlier. And, can we change the “Vendor” word to “Sold by”?

    Thread Starter vsplven

    (@vsplven)

    Plugin Contributor dwpriv

    (@dwpriv)

    @vsplven

    Glad the code worked ??

    As for the second part of your issue, how are you adding the “Vendor” field to the invoice? Is it with a plugin or custom code?

    Thread Starter vsplven

    (@vsplven)

    Thread Starter vsplven

    (@vsplven)

    We believe that from your plugin only, we didn’t do any customization.

    Plugin Contributor dwpriv

    (@dwpriv)

    @vsplven

    Our plugin is pulling that information from some other plugin that’s saving vendor information in the order data. Is your store a multivendor store?

    Thread Starter vsplven

    (@vsplven)

    Yes, it is a multivendor store

    Plugin Contributor dwpriv

    (@dwpriv)

    @vsplven

    What’s the plugin that you’re using for the multi-vendor functionality?

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Invoices are not showing the currency symbol correctly’ is closed to new replies.