mohamedattia35
Forum Replies Created
-
this time we try to test by using another browser (Internet Explorer) and it works and we got the exported file with the required data output but when we used firefox or google chrome, we got a file (admin-ajax.php) and when we open it we got this message inside the downloaded file.
we try to export total of 2807 orders but the number of orders is not the issue because we try to export many numbers of orders (5, 10, 50, 100) and the same issue still the same.
also, FYI, when we use the preview option, it works and we can see the preview output showing the selected fields and data.
we used the option to export from Woocommerce>Orders and it works but when we use it from Woocommerce>Export Orders it does not work.
we are using the latest version 1.2.6, free edition.
Forum: Plugins
In reply to: [WooCommerce] stop send stock low notification on every orderwe can use a counter that count and match the number of sold order with the required number of every send and then send the notification email if the number of orders match the required number in the admin settings.
After we made some custom changes for the plugin, now it’s showing the required fields as expected.
But now we need to add these fields to the custom fields section so we can update or change the values direct from the admin page.
Please, refer to the attached picture.
Thanks…
Hi,
Yes, it the same place we are talking about but on our website it did not show as expected.
What you can advice?
Thanks …
Hi,
Thanks for your reply and we are waiting for the next release.
Dear Val,
Thanks for your reply and I have good news for you.
We get it work but by debugging your plugin code and add a new short code [wcj_order_custom_meta_field] with this handling function as wcj_order_custom_meta_field.
function wcj_order_custom_meta_field( $atts ) { if ( '' == $atts['field_id'] ) return ''; $field_value = $this->the_order->$atts['field_id']; return ( isset( $field_value ) ) ? $field_value : ''; }when we make the same test as you mention in your post (<p>Custom checkout field: [wcj_order_checkout_field field_id=”billing_wcj_checkout_field_1″]</p>) but we use the new short code as (<p>Custom checkout field: [wcj_order_custom_meta_field field_id=”field_id”]</p>), it works great and return the value that we need.
Here is the output as Custom checkout field: 123456789
Please, include this new option in your new version, so, it will be helpful to anyone that need this feature.
Thanks a lot for your time and efforts.
Dear Val,
We can use your custom checkout option, if we only need to get data input from client but we are using a custom plugin that integrated with external database and according to conditions and quantity, it add or update order meta data.
So, it will be impossible to use your custom checkout option and we have to use this plugin.
But now, we need from your plugin to read these meta data saved with each order.
Thanks …
if we don’t use the Booster for WooCommerce custom checkout fields, what can we do?
Dear Val,
Thanks for your reply but we are not talking about the custom checkout fields module.
Let me explain in more details, we have another 3rd parity plugin (not provided by you) that add meta data to the order details and we need to include this data in the pdf invoice.
These meta data appear in the order admin page and also in the emails as we mention before but we can’t include it the pdf or we can’t find the way how to do this through short codes of your plugin.
Also, regarding the plugin update, yes we perform the update to the latest version.
Thanks …
Dear Val,
Thanks for your reply but we are talking about the custom checkout fields module.
Let me explain in more details, we have another 3rd parity plugin (not provided by you) that add meta data to the order details and we need to include this data in the pdf invoice.
These meta data appear in the order admin page and also in the emails as we mention before but we can’t include it the pdf or we can’t find the way how to do this through short codes of your plugin.
Also, regarding the plugin update, yes we perform the update to the latest version.
Thanks …
we have a custom checkout fields, which saved in the post meta table.
these fields appears on the order details in the admin page and in the woocommerce email.
we need to include this fields in the invoice html template.
we need a short code like this as example:-
[woo_custom_order_field order_id=order id number fld_name=the name of the field that need to return its value]
thanks …
Dear Val,
Thanks for your reply.
But even through the PDF Invoicing and Packing Slips module, how we can include order meta data to the PDF invoice.
Thanks …