piffpaffpuff
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Cannot load woocommerce!@ladyfyre could you please report the problem to the plugin dev? thanks
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Cannot load woocommerce!Found the problem! I couldn’t reproduce the issue but @ladyfyre’s comment gave me a hint. You are all using the Settings link on the “Plugins” page to access the settings. That link is wrong and I will update it in the next version.
Until then, you can access the Settings through the menu “WooCommerce” and “Settings” and then the tab “Print”.
Can you confirm that it works this way?
there is no way to download the order, the plugin only prints it.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] file name when saving as pdfThe document filename is based on the HTML document title.
I’m afraid but there is no way to change that that title. The header file that creates that title is used globally and can’t access the $order variable. And you need that variable to access the invoice number.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Bulk print disappeared?Did you install another Plugin in the meantime?
Can’t tell you what’s wrong, but maybe it’s because of your HTML changes?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Invoice Datafunction print_order_add_invoice_date( $fields, $order ) { $new_fields = array(); $order_invoice_date = wcdn_get_order_invoice_date( $order->id ); if( $order_invoice_date ) { $new_fields['order_invoice_date'] = array( 'label' => __( 'Invoice Date' ), 'value' => $order_invoice_date ); } return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'print_order_add_invoice_date', 10, 2 );Check your WooCommerce Tax settings, there a fields to set that up.
This Plugin displays the Totals exactly as WooCommerce. If you have them set up as you like them, the Plugin will show them so.
Well, it already shows the billing phone number. WooCommerce does not offer to enter a shipping phone, so there is no way to show one 😉
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Compability with WP 4.0 ?The current version seems to work with 4.0. But attention, it isn’t yet tested with WC 2.2!
Hi there. You need to contact the developers at 75nineteen Media and ask them if they could support the Print Plugin. They can also contact me if something is stopping them from doing so.
Unfortunately I can’t support paid/closed source plugins otherwise I would have to buy them all :-).
That’s not possible. I’m sorry.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Cannot load woocommerce!Which WooCommerce Print Invoice & Delivery Note version do you have?
Note: The plugin is not yet tested with WooCommerce 2.2.
Forum: Plugins
In reply to: [WooCommerce qTML] language switch not working in adminThanks for the help.
I had issues with the filter hook. It doesn’t seem to work from the functions.php. I also tried to wrap it in a
plugins_loadedandafter_setup_themehook but neither of those worked. Can you replicate that issue?BTW: The commenting out did work well, but it’s not so great for updates :-).
all this is possible with not that much php knowledge. you need to use some hooks and functions that are described in the faq.