Hi @jonatanharringq,
To change font size, add the below code into your child themes functions.php file or use the Code Snippet plugin to apply below code:
/**
* Change invoice font size.
*
* @param string $template Template Type invoice or packing_slip
*
*/
function woo_invoice_custom_font_size($template){
if('invoice'===$template){
?>
<style>
body{
font-size: 15px;
}
</style>
<?php
}
}
add_action('woo_invoice_custom_style','woo_invoice_custom_font_size');
You can follow the docs below for more customization:
https://webappick.helpscoutdocs.com/article/97-action-hooks-of-reference-woo-invoice
https://webappick.helpscoutdocs.com/article/112-how-to-use-actions-filters-hook-woo-invoice
-
This reply was modified 4 years, 6 months ago by
Ohidul Islam.