piffpaffpuff
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Encoding problemhi, could you please upload your translations and post the link in here? i need to test that.
what browser and version do you use?
btw: do you know github? you could contribute to the translations if you want. read more here: https://github.com/piffpaffpuff/woocommerce-delivery-notes/blob/master/readme.md
Yes you can do that via some CSS. You can learn more about it in the FAQ.
https://wordpress.org/plugins/woocommerce-delivery-notes/faq/Here’s an extract:
Can I hide the prices on the delivery note?
Sure, the easiest way is to hide them with some CSS that is hooked in with wcdn_head.
An example that hides the whole price column and the totals. Paste the code in the functions.php file of your theme:
function my_price_free_delivery_note() { ?> <style> .delivery-note .head-price span, .delivery-note .product-price span, .delivery-note .order-items tfoot { display: none; } .delivery-note .order-items tbody tr:last-child { border-bottom: 0.24em solid black; } </style> <?php } add_action( 'wcdn_head', 'my_price_free_delivery_note', 20 );Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Sort products Alphabeticalsorry, but this isn’t possible. but if you find a way to sort them alphabetical in woocommerce, then they should also be sorted like that in the print view.
hi, thanks fo the feedback. which woocommerce and delivery note plugin version do you use? does this happen for all your invoices?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Send delivery note by emailSorry, no, it is a HTML page that can’t be attached to the email. But you can include the print link. Try something like that in your functions.php (not tested):
function my_print_link_in_emails($order, $sent_to_admin, $plain_text) { echo '<a href="' . wcdn_get_print_link( $order->id, 'delivery-note' ) . '">Print Delivery Note</a>'; } add_action('woocommerce_email_after_order_table', 'my_print_link_in_emails', 10, 3);Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] blank print page3.4.1 is out and should fix the issue in 2.1.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] blank print pageThanks for reporting, it’s a problem with a function that was introduced in WooCommerce 2.2 but does not exist in 2.1. I will make an update today to fix that.
woocommerce recently changed the name of this option. which woocommerce version do you all use?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Customer Notesah i see, sorry, there is no way to include them.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Customer Notesthe notes a client enters during the checkout are automatically added. or what notes do you mean?
@cteevee Billing/Shipping address display should depend on the WooCommerce settings (Shipping > Shipping Options > Shipping Destination). But thanks to your feedback I found out that there was a change in WooCommerce 2.2. This should be corrected in the next version.
BTW: Please open a new Support Post if you have further feedback on that issue because I have the feeling this has not much todo with the Shipping method.
what wordpress, woocommerce and plugin version do you have?
I can’t tell you what’s the problem. but most probably it is related to your theme or other plugins. Try to switch to a default theme and disable and reenable one after the other.
if that doesn’t help, go to the wp-config.php file and set WP_DEBUG to true. then you see what errors you have.
can you please post a screenshot of the order? on my template it says ie. “£9.00 via Flat Rate”.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Why update 2.0.2 to 3.2.2?2.0.2 is not fully compatible with WooCommerce 2.1 and 2.2. Besides that, in version 3 it should be fairly easy to enlarge the font and place the address exactly to your need. Try this question from the FAQ as a starting point to further edit the CSS:
How do I quickly change the font of the invoice and delivery note?
You can change the font with CSS. Use the wcdn_head hook and then write your own CSS code. It’s best to place the code in the functions.php file of your theme.
An example that changes the font and makes the addresses very large. Paste the code in the functions.php file of your theme:
function my_serif_font_and_large_address() { ?> <style> #page { font-size: 1em; font-family: Georgia, serif; } .order-addresses address { font-size: 2.5em; line-height: 125%; } </style> <?php } add_action( 'wcdn_head', 'my_serif_font_and_large_address', 20 );address formatting is a woocommerce issue. you need to change the global address format and this plugin will use it automatically. ask in the forum over at woocommerce.