Title: piffpaffpuff's Replies | WordPress.org

---

# piffpaffpuff

  [  ](https://wordpress.org/support/users/chabis/)

 *   [Profile](https://wordpress.org/support/users/chabis/)
 *   [Topics Started](https://wordpress.org/support/users/chabis/topics/)
 *   [Replies Created](https://wordpress.org/support/users/chabis/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/chabis/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/chabis/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/chabis/engagements/)
 *   [Favorites](https://wordpress.org/support/users/chabis/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 326 total)

1 [2](https://wordpress.org/support/users/chabis/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/chabis/replies/page/3/?output_format=md)…
[20](https://wordpress.org/support/users/chabis/replies/page/20/?output_format=md)
[21](https://wordpress.org/support/users/chabis/replies/page/21/?output_format=md)
[22](https://wordpress.org/support/users/chabis/replies/page/22/?output_format=md)
[→](https://wordpress.org/support/users/chabis/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Invoice Number in Customer E-Mail](https://wordpress.org/support/topic/invoice-number-in-customer-e-mail/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/invoice-number-in-customer-e-mail/#post-6333747)
 * hi michael
 * sorry, the plugin doesn’t support such a feature. the plugin just geneartes a
   print view of your order.
 * but you can acheive what you are looking for by editing the email templates of
   woocommerce. [http://docs.woothemes.com/document/template-structure/](http://docs.woothemes.com/document/template-structure/)
 * just use this code to show the invoice number: `echo wcdn_get_order_invoice_number(
   $order->id );`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Update to wordpress 4.2.3 now plug in wont work](https://wordpress.org/support/topic/update-to-wordpress-423-now-plug-in-wont-work/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/update-to-wordpress-423-now-plug-in-wont-work/#post-6396710)
 * wordpress comes with anew version of jquery. it seems like woocommerce is think
   that jquery 1.11.2 is older than 1.2.3. please update your woocommerce version.
   and if this doesn’t help look for other plugins you have installed that require
   block ui.
 * this plugin here doesn’t use block ui, so i can’t really tell you what to do 
   else.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] shipping address not printed](https://wordpress.org/support/topic/shipping-address-not-printed/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/shipping-address-not-printed/#post-6404514)
 * please use this thread:
 * [https://wordpress.org/support/topic/shipping-does-not-show-up-on-print-invoice?replies=28](https://wordpress.org/support/topic/shipping-does-not-show-up-on-print-invoice?replies=28)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] cant print delivery note (or any other)](https://wordpress.org/support/topic/cant-print-delivery-note-or-any-other/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/cant-print-delivery-note-or-any-other/#post-6429793)
 * hi, this seem like the server can’t load the page. try to right click on a print
   button and choose “Open Link in new Tab”. does that work?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] shipping does not show up on print invoice!](https://wordpress.org/support/topic/shipping-does-not-show-up-on-print-invoice/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/shipping-does-not-show-up-on-print-invoice/page/2/#post-5332365)
 * [@wendy](https://wordpress.org/support/users/wendy/) which plugin version and
   woocommerce version do you use? some things you can try:
 * 1. do you have a print-content.php or style.css file in your ‘yourtheme/woocommerce/
   print-order’?
    if yes, just remove the whole ‘print-order’ folder and try again.
 * 2. if this doesn’t help add the following code to your functions.php:
 *     ```
       function test_reset_css_shipping() {
       	?>
       		<style>
       			.order-addresses .shipping-address,
       			.order-addresses.no-shipping-address .shipping-address {
       				display: block;
       			}
       		</style>
       	<?php
       }
       add_action( 'wcdn_head', 'test_reset_css_shipping', 20 );
       ```
   
 * please report back if something of this works for you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Don't show taxes for one country](https://wordpress.org/support/topic/dont-show-taxes-for-one-country/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/dont-show-taxes-for-one-country/#post-6280920)
 * here’s a solution that hides the taxes everywhere, which means woocommerce cart,
   orders, invoices and delivery notes:
 *     ```
       /**
        * Hide Tax label from cart totals
        */
       function example_get_cleaned_label($label) {
       	return preg_replace( '/\([^)]+\)/', '' , $label );
       }
   
       /**
        * Hide Tax label from cart totals
        */
       function example_hide_tax_label($value) {
       	return example_get_cleaned_label($value);
       }
       add_filter( 'woocommerce_cart_totals_order_total_html', 'example_hide_tax_label' );
   
       /**
        * Hide Tax label from order totals
        */
       function example_hide_item_tax_label($total_rows, $order) {
       	$total_rows['order_total']['value'] = example_get_cleaned_label($total_rows['order_total']['value']);
       	return $total_rows;
       }
       add_filter( 'woocommerce_get_order_item_totals', 'example_hide_item_tax_label', 10, 2 );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] invoice date missing](https://wordpress.org/support/topic/invoice-date-missing/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/invoice-date-missing/#post-6230443)
 * you can do that: go to the settings and activate “Generate invoice numbers”
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Order and invoice links in emails](https://wordpress.org/support/topic/order-and-invoice-links-in-emails/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/order-and-invoice-links-in-emails/#post-5873916)
 * Thanks for your tests. I have another idea what could cause the problem but i
   have no fix yet. I’ll keep you updated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] not possible to use translation in Spanish](https://wordpress.org/support/topic/not-possible-to-use-translation-in-spanish/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/not-possible-to-use-translation-in-spanish/#post-6088341)
 * Strange, this should work, there is no need for other options.
 * Please post your locale and file names.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] not possible to use translation in Spanish](https://wordpress.org/support/topic/not-possible-to-use-translation-in-spanish/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/not-possible-to-use-translation-in-spanish/#post-6088312)
 * – make sure you uploaded the files to /wp-content/languages/plugins
 * – make sure you uploaded the .po and .mo file
 * – make sure your files use the same spanish locale as wordpress. for spanish 
   spanish it would be woocommerce-delivery-notes-es_ES.po, for mexican spanish 
   it would be es_MX, etc.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Generate invoice when orred is completed](https://wordpress.org/support/topic/generate-invoice-when-orred-is-completed/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/generate-invoice-when-orred-is-completed/#post-5610257)
 * No reply, closing
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Delivery Instructions missing on Bulk Actions Delivery Note Print](https://wordpress.org/support/topic/delivery-instructions-missing-on-bulk-actions-delivery-note-print/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/delivery-instructions-missing-on-bulk-actions-delivery-note-print/#post-5659414)
 * No reply, closing
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Quantity runs in with price](https://wordpress.org/support/topic/quantity-runs-in-with-price/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/quantity-runs-in-with-price/page/2/#post-5423646)
 * [https://wordpress.org/support/topic/invoice-delivery-note-pricequantity-format?replies=10](https://wordpress.org/support/topic/invoice-delivery-note-pricequantity-format?replies=10)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Shipping address missing](https://wordpress.org/support/topic/shipping-address-missing/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/shipping-address-missing/#post-5853069)
 * If your customers create an account: login to an account where the address is
   missing. Go to my account and view the order. At the bottom, do you see both 
   addresses or the same as when you print it?
 * Btw: you can edit the address setting in your woocommerce settings: Shipping -
   > Shipping to
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Order and invoice links in emails](https://wordpress.org/support/topic/order-and-invoice-links-in-emails/)
 *  [piffpaffpuff](https://wordpress.org/support/users/chabis/)
 * (@chabis)
 * [11 years ago](https://wordpress.org/support/topic/order-and-invoice-links-in-emails/#post-5873913)
 * [@harasse](https://wordpress.org/support/users/harasse/) thanks for your feedback.
   that is really weird. am i reading this right, that in 4.1.5 the links neither
   begin with http nor https?
 * i think the problem is that you use ssl only for the login but not the admin.
   this means i have no possibility to find out it the “My account” page should 
   use https or http. and the email links need the account page.
 * did you try to print an order from the “My Account” page, does that work for 
   you?
 * could you please download the latest version from github and test again? [https://github.com/piffpaffpuff/woocommerce-delivery-notes/archive/master.zip](https://github.com/piffpaffpuff/woocommerce-delivery-notes/archive/master.zip)

Viewing 15 replies - 1 through 15 (of 326 total)

1 [2](https://wordpress.org/support/users/chabis/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/chabis/replies/page/3/?output_format=md)…
[20](https://wordpress.org/support/users/chabis/replies/page/20/?output_format=md)
[21](https://wordpress.org/support/users/chabis/replies/page/21/?output_format=md)
[22](https://wordpress.org/support/users/chabis/replies/page/22/?output_format=md)
[→](https://wordpress.org/support/users/chabis/replies/page/2/?output_format=md)