Dina S.
Forum Replies Created
-
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!
We believe that your issue is resolved.
We are going to mark this thread as resolved.
Thank you!
Please add the below code snippet in your child theme’s functions.php file in order to fix the issue.
add_filter('woocommerce_order_query_args', 'th9e_woocommerce_order_query_args', 99);
function th9e_woocommerce_order_query_args($args){
if(isset($_GET['page']) && $_GET['page'] == 'thwecmf_email_customizer'){
$args['type'] = array('shop_order');
}
return $args;
}We hope this will help.
@graymedialtd
Glad to hear that!Glad to hear that!
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!Forum: Plugins
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] zip code is hiddenUnfortunately, it is not possible to swap the display position of Billing, Shipping, and Additional info on the checkout page using the Checkout Field Editor for WooCommerce plugin as these are the default sections of WooCommerce.
Thank you!
- This reply was modified 1 year, 9 months ago by Dina S..
Hi,
Unfortunately, there is no direct option available in our plugin to provide an OFF value for the checkbox field. However, you can add the below filter function in your child theme’s functions.php to achieve this requirement.
function thwcfe_checkbox_field_off_value($off_value, $name){
if($name === 'field_name'){
$off_value = 'no';
}
return $off_value;
}
add_filter('thwcfd_checkbox_field_off_value', 'thwcfe_checkbox_field_off_value', 10, 2);
In the above code, please replace the field_name with your corresponding Checkbox field name.
Also, please provide “Yes” value in the “Default Value” inside the Checkbox field’s Basic Info tab.
Thank you!While checking the website, we found that the page was created using WooCommerce Blocks.
To check further, could you please raise a ticket through our website? We hope our technical team will be able to help you.Thank you!
Forum: Plugins
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] zip code is hiddenCould you please temporarily deactivate our plugin and verify it from your side? If the issue still persists then this issue is not related to our plugin. If the issue is getting resolved after deactivating our plugin then please do let us know.
Thank you!
We can see that you are using WooCommerce blocks on your website. Due to this reason, the changes are not being reflected on the checkout page.
Unfortunately, any of the plugins that add custom fields to the checkout page are currently not compatible with WooCommerce blocks. Once WooCommerce adds any hooks or filters, we will definitely provide the compatibility.
For now, we suggest using the shortcode [woocommerce_checkout] to create the checkout page, as this will enable our plugin to work correctly.
Thank you!
We would like to inform you that we have already made our plugin compatible with HPOS.
Could you please confirm whether you are using the latest version of our plugin?
Thank you!
Forum: Reviews
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] You Wanted It.First of all, we truly apologize for the inconvenience caused to you.
We believe that you are referring to the review banner.
If so, actually, it is a dismissible notice. Clicking on ‘Nah Never’ or Close button will remove the banner from the page and it won’t ask again.
If the banner is not removed from your website then it might be a site specific issue.
Adding the below snippets in the functions.php file will solve this issue for you.
add_filter('thwcfd_show_dismissable_admin_notice', '__return_false'); add_filter('thwcfd_dismissable_admin_notice_javascript', '__return_false');If you are still facing the issue, can you please raise a ticket through our website themehigh.com. Our technical team will be able to help you.
We hope to hear from you soon.
Thank you.
Since we haven’t heard back from you, we believe that your issue is resolved.
We are going to mark this thread as resolved.
Thank you!
Since we haven’t heard back from you, we believe that your issue is resolved.
We are going to mark this thread as resolved.
Thank you!