• Resolved jfvsdrov;zftri

    (@hannahmacey)


    I’ve currently got the PDF Invoices plugin uploaded on my website, and want to be able to add a sentence at the bottom of the invoice to say ‘Shipping is inclusive of VAT 20%’ – is this possible with the free version?

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Contributor dwpriv

    (@dwpriv)

    This is possible using a code snippet. If you’re comfortable with PHP, you can use the action filters here to print the note on the invoices. Here’s an example snippet


    add_action( 'wpo_wcpdf_after_customer_notes', function( $document_type, $order ) {
    echo 'Your note here';
    }, 10, 2 );

    This will print the note in quotes after the customer notes section on the invoices.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.