Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! It looks like your font doesn’t support non-breaking spaces. You can add a small code snippet to your site to replaces non-breaking spaces with regular spaces:

    
    add_filter( 'wpo_wcpdf_get_html', function( $html, $document ) {
    	return str_replace(' ', ' ', $html);
    }, 10, 2 );
    

    If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters????

    Thread Starter tkwing009

    (@tkwing009)

    thanks, it works very well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘remove the ” “’ is closed to new replies.