currency symbol | WordPress.org

Sorry to hear that, I will take a look in the morning and get that fixed for you.

Thanks bro, I really need to show this symbol .plz do it 🙁

Are you using Georgian as your default site language?

Please update to version 2.9.1, and if not using Georgian as default site language, add the following code snippet to your child theme functions.php file or in a PHP code snippet to load a Georgian compatible font:

/**
 * Add Noto Sans Georgian font.
 * 
 * @param array $args mPDF args.
 * @return array
 */
add_filter( 'wc_cart_pdf_mpdf_args', function( $args ) {
	if ( empty( $args['fontdata'] ) || ! is_array( $args['fontdata'] ) ) {
		$args['fontdata'] = array();
	}

	$args['fontdata'] = $args['fontdata'] + array(
		'notosans-georgian' => array(
			'R'  => 'NotoSansGeorgian.ttf',
		),
	);

	$args['default_font'] = 'notosans-georgian';

	return $args;
} );
  • This reply was modified 14 hours, 2 minutes ago by David Jensen.

Great! Glad we got that working. Cheers

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer