Kinga_Getint
Tera Contributor

Hey @Rohit_Singh_19 

 

It's not an exact fix, but may be a quick workaround.

Render ILS as an ISO code instead of the ₪ glyph, e.g. ILS 1,234.00 (with a non-breaking space). This completely sidesteps the buggy glyph metrics in the PDF engine/fonts, requires no font uploads, and won’t affect other currencies.

 

Try with this HTML snippet:

<span class="currency"> ${currency == 'ILS' ? 'ILS&nbsp;' : currency_symbol} </span> <span class="amount">${formatted_amount}</span> "