Created
September 25, 2020 07:43
-
-
Save wpweb101/7cb9dffff763d4a39cc552e815c51b57 to your computer and use it in GitHub Desktop.
EDD PDF Vouchers - Change PDF Font
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function edd_vou_pdf_modify_generate_fonts( $pdf_font ) { | |
| // by default the font type is "helvetica" | |
| //Remember : The font should be in tcpdf folder ( edd-pdf-vouchers/includes/tcpdf/fonts ) | |
| $pdf_font = 'freeserif'; | |
| return $pdf_font; | |
| } | |
| add_filter( 'edd_vou_pdf_generate_fonts', 'edd_vou_pdf_modify_generate_fonts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment