moksha shah
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Column orderHi @yaelduckwen
Yes, it’s possible to change the order of the columns. Please replace the below files in the given path.
Please take a backup of the existing plugin before replacing the file below.
File path:- woocommerce-delivery-notes/templates/print-order.
File:- https://www.dropbox.com/s/k6s0znjgkl4mhf9/print-content.php?dl=0
Please note:- Updating the plugin’s new version will wipe out these changes.
Regards,
Moksha.Hi @slavisamonobunt & @jorgehoffmann
I apologize for the inconvenience you have faced due to an issue with our plugin. We have released v4.7.3 which has the patch for the Cross-Site Request Forgery vulnerability issue. Kindly update the plugin and let us know if that resolved the issue for you or not.
Regards,Moksha.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] CSS VulnerabilityHi @anotherdave
Good to know that your problem is resolved.
It would be great if you can give a review for the plugin & the support on https://www.ads-software.com/support/plugin/woocommerce-delivery-notes/reviews/#new-post. That would be very helpful.
Regards,Moksha.
Hi
I apologize for the inconvenience you have faced due to an issue with our plugin. We have released v4.7.3 which has the patch for the Cross-Site Request Forgery vulnerability issue. Kindly update the plugin and let us know if that resolved the issue for you or not.
Regards,Moksha.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] CSS VulnerabilityHi @tomcobbley, @wzshop , @stoelwinder, @anotherdave, @bcolflesh
I apologize for the inconvenience you have faced due to an issue with our plugin. We have released v4.7.3 which has the patch for the Cross-Site Request Forgery vulnerability issue. Kindly update the plugin and let us know if that resolved the issue for you or not.
Regards,Moksha.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] CSS VulnerabilityHi @tomcobbley ,@wzshop ,@stoelwinder ,@anotherdave ,@bcolflesh
Sorry for the inconvenience.
Yes, We are looking into this & will get back to you soon with a solution.Regards,
Moksha.Hi @besselink , @talismyra , @wzshop
Sorry for the inconvenience.
Yes, We are looking into this & will get back to you soon with a solution.Regards,
Moksha.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Add invoice dateHi @whode
Good to know that your problem is resolved.
It would be great if you can give a review for the plugin & the support on https://www.ads-software.com/support/plugin/woocommerce-delivery-notes/reviews/#new-post. That would be very helpful.
Regards, Moksha.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Add invoice dateHi @whode
Yes, its is possible to add “invoice date” in our invoice. Please add the below code in your active theme’s functions.php file or use a plugin like Code Snippets:
function example_custom_order_fields( $fields, $order ) { $new_fields = array(); $new_fields['_invoice_date'] = array( 'label' => 'Invoice Date:', 'value' => date( 'Y-m-d H:s:i', current_time( 'timestamp' ) ), ); return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields', 10, 2 );
Please let us know if you need any other help.
Regards,Moksha.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] add private notesHi @marliby
Sorry, its not possible to add the private notes of an order in our invoice. But we can add customer order note in our invoice.
Please let us know if you need any other help.
Regards,Moksha.
Hi @taratech
We do have an action that you can use to differentiate the Invoice and receipts. I am sharing an example code snippet here that you can use and customize according to your requirement:
function wcdn_before_template() { $template_type = wcdn_get_template_type(); switch ( $template_type ) { case 'invoice': // code for the custom invoice will go here. // exit(); break; case 'delivery-note': // code for the custom delivery note will go here. // exit(); break; case 'receipt': // code for the custom receipt will go here. // exit(); break; default: # code... break; } } add_action( 'wcdn_before_template', 'wcdn_before_template' );
For further queries about modification, you can also reach out to the contact details mentioned in my earlier response.
Please let us know if you need any help.
Regards,Moksha.
Hi @taratech
We can do this modification but it will be chargeable as it’s your business specific. The cost of this modification will be $90 per hour. If you are ok with it then drop an email on tychesoftwares dot freshdesk dot com.
Feel free to let me know if you have any question.
Regards,Moksha.
Hi @sajtbolaget,
This issue is not replicated on our site. As you said, only the WooCommerce and Print Invoice & delivery notes plugin is active, so bulk printing should work. But for this issue, you can email tychesoftwares dot freshdesk dot com directly.
Regards,Moksha.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Print receipt on my accountHi @alfredo1216
Good to know that your problem is resolved.
It would be great if you can give a review for the plugin & the support on https://www.ads-software.com/support/plugin/woocommerce-delivery-notes/reviews/#new-post. That would be very helpful.
Regards,Moksha.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Print receipt on my accountHi @alfredo1216
For Printing the receipt on the client side only, please refer to this and let us know whether it fulfills your requirement.
Please let us know if you need any other help.
Regards,Moksha.