• Resolved ezekielion

    (@ezekielion)


    Is there a way to add a simple “Thank you for your order” in the Packing Slip right after all the items list? If yes, how?

    If you can add it as a default in the Simple template that will be great.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor alexmigf

    (@alexmigf)

    Hello @ezekielion

    You can add a message very easily with our Premium Templates extension by adding a custom block.

    Alternatively you could use this code snippet:

    add_action('wpo_wcpdf_after_order_details', 'wpo_wcpdf_add_custom_message', 10, 2);
    function wpo_wcpdf_add_custom_message( $document_type, $order )
    {
    	if( !empty($order) && $document_type == 'packing-slip' ) {
    		echo '<p>Thank you for your order.</p>';
    	}
    }

    If you never worked with actions/filters, please read this documentation page: How to use filters.

    Thread Starter ezekielion

    (@ezekielion)

    Thank you, Alex.

    At which line in packing-slip.php should I be inserting these?

    Thank you.

    Plugin Contributor alexmigf

    (@alexmigf)

    Hi @ezekielion

    Should be on your theme functions.php file. Please read the documentation page that i linked above.

    Thread Starter ezekielion

    (@ezekielion)

    Under the General tab -> “Choose a template” it says

    Want to use your own template? Copy all the files from wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/Simple to your (child) theme in wp-content/themes/mytheme/woocommerce/pdf/yourtemplate to customize them

    Shouldn’t I be customizing it under the files in “yourtemplate”?

    Plugin Contributor alexmigf

    (@alexmigf)

    Hello @ezekielion

    It’s not necessary because it uses an action hook that exists on the template, you just need to add the code snippet to the functions.php file in your theme (or child theme).

    • This reply was modified 4 years, 5 months ago by alexmigf.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Adding Thank You to Packing Slip’ is closed to new replies.