piffpaffpuff
Forum Replies Created
-
could you please check if your issue is fixed with version 4.1?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Prices without taxin your woocommerce settings you can setup how prices are displayed. go to WooCommerce -> Settings -> Taxes.
this plugin just inherits those settings, and there is no other way to change them.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Remove Payment Method rowthis is fixed in the latest version. eventough woocommerce itself has this row in the totals.
please read this support thread: https://wordpress.org/support/topic/remove-email-and-phone-number?replies=2
hi there and i’m glad you like it. you can add custom fields to your print out.the only thing you need to know is what the custom meta field name is. an example with a field called ‘my_field’. paste the code in your functions.php and replace ‘my_field’ with your meta field name:
function example_custom_order_fields( $fields, $order ) { $new_fields = array(); // replace my_field with our custom field name if( get_post_meta( $order->id, 'my_field', true ) ) { $new_fields['my_field'] = array( 'label' => 'Example Field', 'value' => get_post_meta( $order->id, 'my_field', true ) ); } return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields', 10, 2 );here’s an example that removes the fields from all templates. uncomment the two lines to remove them only from the receipt. place the code in the functions.php:
function example_remove_order_info_fields( $fields, $order ) { //if( wcdn_get_template_type() == 'receipt' ) { unset( $fields['billing_email'] ); unset( $fields['billing_phone'] ); //} return $fields; } add_filter( 'wcdn_order_info_fields', 'example_remove_order_info_fields', 10, 2 );Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] WooCommerce POS by Paul Kimi was in talks with paul. i think he has it on his todo list. from my point i can’t do that much, it’s on pauls side to integrate the plugin. you may ask paul directly what his plans are.
you can just press the “Print invoice” button to print the invoice. or what exactly do you mean with generate?
this plugin has no email functionality built in. it must be a problem with woocommerce or another plugin, sorry.
you can switch the position quite easy with css. add this code to the functions.php:
function example_switch_address_positions() { ?> <style> .order-addresses .billing-address { float: right; } </style> <?php } add_action( 'wcdn_head', 'example_switch_address_positions', 30 );version 4.1 has support for woocommerce refunds. there is no option for credit notes but i think when refunds are displayed on the invoice/delivery note it should be fine. what do you think?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Add custom print typein version 4.1 you cane rename all titels to your needs. there are 3 hooks for that:
wcdn_template_registration_invoice wcdn_template_registration_delivery_note wcdn_template_registration_receiptan example that renames the delivery note to packing slip. place it in your functions.php:
function example_rename_delivery_note_name( $registration ) { $registration['labels']['name'] = __( 'Packing Slip' ); $registration['labels']['name_plural'] = __( 'Packing Slips' ); $registration['labels']['print'] = __( 'Print Packing Slip' ); $registration['labels']['print_plural'] = __( 'Print Packing Slips' ); $registration['labels']['message'] = __( 'Packing Slip created.' ); $registration['labels']['message_plural'] = __( 'Packing Slips created.' ); $registration['labels']['setting'] = __( 'Enable Packing Slips' ); return $registration; } add_filter( 'wcdn_template_registration_delivery_note', 'example_rename_delivery_note_name' );Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Price ex. Taxyou need to setup your prices in the woocommerce settings. go to the WooCommerce -> Settings -> Taxes.
the plugin inherits the price and tax settings from woocommerce.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Wrong Pricesis this still an issue. could you tell me what is wrong with the prices?
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Custom Font on Invoice?i think i mark this as resolved