Dina S.
Forum Replies Created
-
Since we haven’t heard back from you in the ticketing system, 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!
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!
Forum: Plugins
In reply to: [Dynamic Pricing and Discount Rules] Offer data does not workSince 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!
Forum: Plugins
In reply to: [Dynamic Pricing and Discount Rules] conflict with plugin “chained products”?We believe our technical team has adequately addressed your question.
We are going to mark this thread as resolved.
Thank you!
Hi Angelo,
Have a great day!
Hi Jan,
Have a great day!
Thank you for sharing your rating and review!
Thank you for the kind words. We are extremely pleased to see that you are satisfied with our services.
Forum: Reviews
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] Good plug-in.Your feedback means a lot! We’re delighted to hear that our assistance enhanced your experience.
Have a great day!
Please note that you can display only the keys of custom fields added using our plugin in the select dropdown by adding the following code in your child theme’s functions.php file.
add_filter('postmeta_form_keys', 'th_postmeta_form_keys', 11, 2);
function th_postmeta_form_keys($keys, $pos){
$billing = THWCFD_Utils::get_fields('billing');
$shipping = THWCFD_Utils::get_fields('shipping');
$additional = THWCFD_Utils::get_fields('additional');
$custom_fields = array_merge($billing,$shipping,$additional);
$custom_field_keys = array();
if(is_array($custom_fields)){
foreach($custom_fields as $key => $field){
if($field['custom']){
$custom_field_keys[] = $key;
}
}
if(!empty($custom_field_keys)){
return $custom_field_keys;
}
}
return $keys;
}Otherwise, you will need to add it as the input fields.
Thank you!
Please ensure that you have enabled the options “Enable required validation override for address fields.” in the Locale override settings inside the Advanced Settings tab. If not, please enable it and verify from your side.
Thank you!
While checking, we found the issue is related to a style compatibility conflict with the ‘Tante Astrid Plugin’. To resolve this, please add the following code snippet to your child theme’s functions.php file:
function dequeue_custom_admin_styles() {
$current_screen = get_current_screen();
if ($current_screen && isset($_GET['page']) && $_GET['page'] === 'checkout_form_designer') {
wp_dequeue_style('custom-admin-styles');
}
}
add_action('admin_enqueue_scripts', 'dequeue_custom_admin_styles', 100);We hope this will help.
Thank you!
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Quick View issueYour 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!