• Resolved ruudiz

    (@ruudiz)


    Hello!

    When my customers make an order and leave a note in checkout page customer note area, then this note is also displayed in PDF template.
    Is there an option to hide customer note from generated PDF template?

    I have purchased a Pro version and Premium templates.

    Thanks!

    • This topic was modified 6 years, 11 months ago by ruudiz.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! You can hide the customer notes from the PDF with CSS:

    
    .customer-notes { display: none; }
    

    or if you want to limit this to removing it from the invoice:

    
    .invoice .customer-notes { display: none; }
    

    Using custom styles (note that on that page there’s also a section specifically for the Premium Templates, which makes this a bit easier than with the free version).

    Ewout

    Thread Starter ruudiz

    (@ruudiz)

    Thanks, it worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide customer notes from PDF template’ is closed to new replies.