Hi @pipoulito,
Certainly. You can add a little custom CSS via the following code snippet:
add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles' );
function wpo_wcpdf_custom_styles () {
?>
.invoice .customer-notes { display: none; }
<?php
}
This code snippet should be added to the functions.php of your child theme or with a plugin like Code Snippets. If you have never worked with code snippets or functions.php before please read this: How to use filters
-
This reply was modified 5 years, 2 months ago by
kluver.