piffpaffpuff
Forum Replies Created
-
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. https://docs.woothemes.com/document/template-structure/
just use this code to show the invoice number:
echo wcdn_get_order_invoice_number( $order->id );
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
In reply to: [Print Invoice & Delivery Notes for WooCommerce] shipping address not printedplease use this thread:
https://www.ads-software.com/support/topic/shipping-does-not-show-up-on-print-invoice?replies=28
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?
@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
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
In reply to: [Print Invoice & Delivery Notes for WooCommerce] invoice date missingyou can do that: go to the settings and activate “Generate invoice numbers”
Thanks for your tests. I have another idea what could cause the problem but i have no fix yet. I’ll keep you updated.
Strange, this should work, there is no need for other options.
Please post your locale and file names.
– 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.
No reply, closing
No reply, closing
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Quantity runs in with priceForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Shipping address missingIf 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
@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