Viewing 1 replies (of 1 total)
  • Plugin Author Istiaq Nirab

    (@ok9xnirab)

    Serbian fonts is not supported by default !!

    You can add supported font-family via your child theme.

    
    add_action('pips_invoice_template_html_header', 'pips_serbian_custom_font', 20);
    
    function pips_serbian_custom_font() {
    	?>
    	<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap" rel="stylesheet">
    	<style>
    		body {
    			font-family: 'Noto Sans', sans-serif;
    		}
    	</style>
    <?php
    }
    

    Simply copy & paste this code on your child theme’s functions.php . I hope Serbian fonts will be displayed properly.

    • This reply was modified 2 years, 2 months ago by Istiaq Nirab.
Viewing 1 replies (of 1 total)
  • The topic ‘charset serbian language latin’ is closed to new replies.