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

    (@kluver)

    Hi @julientm,

    You can hide it with a bit of custom CSS:

    add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles' );
    function wpo_wcpdf_custom_styles () {
    	?>
    	div.customer-notes {
    		display:none;
    	}
    	<?php
    }

    This code snippet should be placed in the functions.php of your child theme. If you haven’t worked with code snippets or functions.php please read this: How to use filters

    • This reply was modified 6 years, 2 months ago by kluver.
    Thread Starter julientm

    (@julientm)

    Perfect!!! thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Order notes on invoice and Packing Slips’ is closed to new replies.