• the language of my woocommerce site is Tranditional Chinese (zh-tw)
    the download PDF can only show english letters and numbers, others will be shown as 口口口口
    can you please make it available for UTF-8 for other language fonts?
    or tell me how to change the codex for zh-tw.
    thanks

Viewing 1 replies (of 1 total)
  • Plugin Author David Jensen

    (@dkjensen)

    Hi @metismini

    Could you try adding the following to your child theme functions.php file?

    add_filter( 'wc_cart_pdf_mpdf_args', function( $args ) {
    	$args['mode'] = 'ja+aCJK';
    
    	return $args;
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Can the downloaded PDF support to show other language’ is closed to new replies.