Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2025 03:09 AM
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 ' : currency_symbol} </span> <span class="amount">${formatted_amount}</span> "