piffpaffpuff
Forum Replies Created
-
i chosen to just print the order. the question is what people want most. if more people think it should print the invoice then i can change that quite quickly.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Wont print after updatewhat do you mean with “right clicking does not work”? this button is just a link to a page. in chrome you can choose “Open link in a new tab” an a new tab should open. what do you see in this tab? what is the url of the tab (post it in here please)?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Missing detailsplease update to the latest version. there was an issue with the endpoint: http://wordpress.org/support/topic/wont-print-after-update?replies=11
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Wont print after updatethanks for the test, your printing issue is quite weird. what browser/version do you use? besides that try the following:
instead of clicking on the print button, make a right-click, then choose “open link in new tab/window” (or however it is called in your browser). this should open the print page in a new tab/window instead of immediately opening the print dialogue.
can you tell me what you see on this new page?
if you see the print page correctly, it must be a javascript problem.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Wont print after updatethanks for your test, that’s weird. what browser/version do you use? besides that try the following:
instead of click on the print button, make a right-click, then choose “open link in new tab/window” (or however it is called in your browser). this should open the print page in a new tab/window instead of immediately opening the print dialogue.
can you tell me what you see?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Wont print after updatea new version is out. please test if the 404 pages disappears. if not, save your print settings in the woocommerce menu again.
report back please.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Broken after Update!Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Missing detailsbut i can also include some standard fields by default. what would be important fo you?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Missing detailslook at the woocommerce docs to learn what info you can get from your product:
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Missing details@mathysjp check you print settings in the woocommerce menu.
besides that, the structure for additional product fields has changed in the template. use the new
wcdn_order_item_fieldshook to add your own additional product fields (like sku).function my_custom_product_fields($fields, $product, $order) { if( isset( $product->get_sku() ) ) { $fields[] = array( 'label' => 'SKU:', 'value' => $product->get_sku() ); } return $fields; } add_filter( 'wcdn_order_item_fields', 'my_custom_product_fields', 10, 3);yeah sure, there is a question in the faq for it:
What about the product image, can I add it to the invoice and delivery note?
Yes, use the wcdn_order_item_before action hook. It allows you to add html content before the item name.
An example that adds a 50px large product image. Paste the code in the functions.php file of your theme:
function my_product_image( $product ) { if( isset( $product->id ) && has_post_thumbnail( $product->id ) ) { echo get_the_post_thumbnail( $product->id, array( 50, 50 ) ); } } add_action( 'wcdn_order_item_before', 'my_product_image' );Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Wont print after updateglad that it worked!
well, the positioning is quite different from country to country. in europe you print on a4 and can have the address field either left or right. in the usa you have other paper formats and conventions. every country has its specialities. it is not really possible to make everybody happy.
you can slightly edit the css to make it work better with your needs. please read the faq, where you can find a small example.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Wont print after updatesorry for the 404. i know where the problem is, but i can’t fix it until tomorrow. please read question 4 of the faq and resave your settings.
did that solve your problem?
Please do not post in here! Create a new topic if you have a question.
Hi, thanks.
The template uses the same looks as the orders of WooCommerce. There isn’t a quantity column either.