Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Last active December 18, 2024 13:26
Show Gist options
  • Select an option

  • Save wpweb101/6258f367c04284073112 to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/6258f367c04284073112 to your computer and use it in GitHub Desktop.
Woocommerce PDF Vouchers - Change PDF Font
<?php
function woo_vou_pdf_modify_generate_fonts( $pdf_font ) {
// by default the font type is "helvetica"
$pdf_font = 'freeserif';
return $pdf_font;
}
add_filter( 'woo_vou_pdf_generate_fonts', 'woo_vou_pdf_modify_generate_fonts' );
@wpweb101
Copy link
Author

Note: Template will support TCPDF supported fonts. Don't worry, if you don't have TCPDF supported fonts. You can simply convert the fonts to TCPDF supported fonts from below link.
http://fonts.snm-portal.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment