Upendra Kapse
Forum Replies Created
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Remove email from invoiceHello,
To remove the email address field from the Invoice please use this code snippet:
/** * Add this code snippet in functions.php file of your currently active theme. * An example that removes the 'Email' field. */ function example_removed_customer_email( $fields ) { unset( $fields['billing_email'] ); return $fields; } add_filter( 'wcdn_order_info_fields', 'example_removed_customer_email' );
Kind Regards,
UpendraForum: Plugins
In reply to: [Currency per Product for WooCommerce] Show me regular price if is on saleHello,
That is strange, I just tried setting a sale price along with the regular price on my test site and it worked fine as you can see in this screenshot: https://prnt.sc/1az0ujs
My default currency is USD but for this product, I have set the currency to Euro using the Currency per Product plugin.
Can you please confirm the sale price is not appearing on your site because of our plugin? Did you try temporarily deactivating our plugin? Does the sale price appear when you do that?
If it is happening due to our plugin can I please request you to share screenshots of your settings so that we can try to replicate the issue by doing similar settings on our end?
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Currency per Product for WooCommerce] Compatibility IssueHello,
I am afraid we have not tested our Currency per Product for WooCommerce for compatibility with the ATUM multi-inventory management plugin that you mentioned. But I will escalate this compatibility issue to our dev team as an enhancement that we can consider implementing in the future.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Currency per Product for WooCommerce] Rounding upHello,
I am afraid there is no direct option to round off ?the converted price in the free version of the plugin. However, we do have this option in the pro version of the plugin.
Kind Regards,
UpendraHello @devowp1982,
First of all, apologies for the delay on this.
No, I am afraid the exchange rates will not be converted automatically. Can you please try setting the exchange rate from Ruble to USD and then see how it works?
Kind Regards,
UpendraForum: Plugins
In reply to: [Product Input Fields for WooCommerce] Number field on mobileHi @webreneszansz,
Apologies for the delay in getting back to you on this.
And thank you for pointing this issue out, I am able to replicate it on our end too and I am escalating it to our development team. We will fix this in a future update of the plugin.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Product Input Fields for WooCommerce] style problem (design)Hi @oufleure,
Apologies for the delay on this.
Can you please share the product page URL where you are facing this styling issue? It could be just a CSS conflict that we can easily fix by adding custom CSS.
Kind Regards,
Upendra.Hi @giuseppecaleca,
Yes, please be rest assured that the plugin will work just fine with the latest version of WooCommerce. Once we update the tested up to version for WooCommerce in our next plugin update this notice will not appear too.
Kind Regards,
Upendra.Hi @yfain,
First of all, apologies for the delay in getting back to you on this.
When you get a white page, can you please check what exact Fatal error you are getting? You can enable debugging on your site to check what exact error is appearing.
Please share the error with us as it will help us to identify what could be causing this issue.
Kind Regards,
Upendra.Hi @enriqueborja,
First of all, apologies for the delay in getting back to you on this.
We do have the plugin partially translated to the Spanish language. If you change the language of your site to Spanish from the Settings>> General and then print the Invoice it will come in the Spanish language.
If there are any strings missing to be translated, you can translate them using the woocommerce-delivery-notes-es_ES.po file which is there under \wp-content\plugins\woocommerce-delivery-notes\languages\.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] tax rate column in per itemHi @musabaltaci,
First of all, apologies for the delay in getting back to you on this.
I am afraid there is no direct way to do this, it will require custom code changes in the plugin.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Product Item missingHi @jennyong,
First of all, apologies for the delay in getting back to you on this.
Are you saying that the fields added with the Gravity Forms Product add-ons plugin are not coming in the Invoice? If yes, I recommend you to use the below mentioned filter to add these fields to the Invoice using their meta keys:
/** * Add this code snippet in functions.php file of your currently active theme. * An example that adds a 'VAT' and 'Customer Number' field to the end of the list. */ function example_custom_order_fields( $fields, $order ) { $new_fields = array(); if( get_post_meta( $order->id, 'your_meta_field_name', true ) ) { $new_fields['your_meta_field_name'] = array( 'label' => 'VAT', 'value' => get_post_meta( $order->id, 'your_meta_field_name', true ) ); } if( get_post_meta( $order->id, 'your_meta_field_name', true ) ) { $new_fields['your_meta_field_name'] = array( 'label' => 'Customer Number', 'value' => get_post_meta( $order->id, 'your_meta_field_name', true ) ); } return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields', 10, 2 );
Instead of the VAT ID and Customer number examples in the above snippet you can add your fields added using the Gravity Forms plugin using the meta keys for those fields.
Kind Regards,
Upendra.Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] remove the other plugin infoHi @tkwing009,
Apologies for the delay in getting back to you on this.
Can you tell us which other plugin you are using for the delivery date info?
Also, we do have a filter to remove certain fields from the Invoice. You can refer to this example code snippet that will help you with this:
/** * Add this code snippet in functions.php file of your currently active theme. * An example that removes the 'Payment Method' field. */ function example_removed_payment_method( $fields ) { unset( $fields['payment_method'] ); return $fields; } add_filter( 'wcdn_order_info_fields', 'example_removed_payment_method' );
In the above snippet you can add the field that you want to remove from the Invoice instead of the Payment Method field.
Kind Regards,
Upendra.Hi @maaike53,
To make CSS changes in the pdf Invoice please make sure that you are using the following filter that we have:
function example_serif_font_and_large_address() { ?> <style> #page { font-size: 1em; font-family: Georgia, serif; <strong>color: red;</strong> } </style> <?php } add_action( 'wcdn_head', 'example_serif_font_and_large_address', 20 );
In the above code snippet, you can apply this for the particular section where you want to change the font color.
Kind Regards,
Upendra.Hi @evalast,
Apologies for the delay in getting back to you on this.
I just checked this on our end and the variation is getting printed fine just once in the Invoice. Can you please tell us if you have added the variations with the default WooCommerce way or you are using some plugin to modify them?
Also, please tell me the other plugin you are referring to here so that I can test this by activating that plugin on our end.
Kind Regards,
Upendra.