ThemeHigh
Forum Replies Created
-
Great!
Could you please verify whether the country field is disabled in our plugin or not? If so, please enable it and verify it from your side.
Thank you!
We have checked on our local environment and are not able to recreate the issue you are facing.
Your issue needs a detailed check. Can you please raise a ticket through our website? We hope our technical team will be able to help you.
Thank you!
- This reply was modified 3 years, 2 months ago by ThemeHigh.
Unfortunately, this requirement cannot be achieved using our plugin.
Thank you!
Thank you for letting us know.
That seems to be a site-specific issue. If you encounter that problem in the future, after installing our plugin, please don’t hesitate to contact us again.
We hope your issue is resolved. We are going to mark this thread as resolved.
Thank you!
We hope your issue is resolved. We are going to mark this thread as resolved.
Thank you!
As a follow-up, please add the below code snippet in your child theme’s functions.php file in order to get the custom field values through API
add_filter('woocommerce_rest_prepare_shop_order_object', 'filter_order_response', 10, 3); function filter_order_response($response, $post, $request){ // Customize response data here $order_id = $post->get_id(); $value = ( $value = get_post_meta($order_id, 'field_name', true) ) ? $value : ''; $response->data['billing']['field_name'] = $value; return $response; }Please note that when an order is placed the field values are saved as billing_’field name’ and shipping_’field name’ in order meta. So please provide the field name accordingly.
Thank you!
Forum: Plugins
In reply to: [Order Delivery Date And Time] Le créneau horaire sélectionné ne disparaîtYour issue needs a detailed check. Can you please raise a ticket through our website? We hope our technical team will be able to help you.
Thank you!
Please add the below code snippet in your child theme’s functions.php file in order to get the custom field values through API
add_filter('woocommerce_rest_prepare_shop_order_object', 'filter_order_response', 10, 3); function filter_order_response($response, $post, $request){ // Customize response data here $order_id = $post->get_id(); $value = ( $value = get_post_meta($order_id, 'field_name', true) ) ? $value : ''; $response->data['billing']['field_name'] = $value; return $response; }Please note that when an order is placed the field values are saved as billing_’field name’ and shipping_’field name’ in order meta. So please provide the field name accordingly.
Thank you!
Your issue needs a detailed check. Can you please raise a ticket through our website? We hope our technical team will be able to help you.
Thank you!
Your issue needs a detailed check. Can you please raise a ticket through our website? We hope our technical team will be able to help you.
Thank you!
As per the WordPress forum policy, we can’t answer premium related questions on this forum. Could you pelase raise a ticket through our website? We hope our technical team will be able to help you.
Thank you!
It appears that you have already submitted a ticket via our website, and our technical team has already provided a solution to your inquiry.
We hope that the solution provided resolves your inquiry.
Thank you!
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Theme AlienGreat!
Thank you for letting us know.