Dina S.
Forum Replies Created
-
Thank you for reaching out.
I wanted to clarify that we are currently using the bulk discount feature, while the one you mentioned is the tiered discount feature.
Unfortunately, our current plugin version doesn’t support the functionality you’re looking for. However, we have forwarded your suggestion to our development team and they will check the feasibility of adding this in future versions.
We regret we couldn’t be of more help.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!
You can use the below code in your child theme’s functions.php file, you will get “Extra product options” field details in REST API product response with the key “wepo_options“.
add_filter( 'woocommerce_rest_prepare_product_object', 'wc_app_add_custom_data_to_product', 10, 3 );
add_filter( 'woocommerce_rest_prepare_product_variation_object', 'wc_app_add_custom_data_to_product', 20, 3 );
// filter the product response here
function wc_app_add_custom_data_to_product( $response, $post, $request ) {
$product_id = $post->get_id();
$sections = display_fields_in_front_end($product_id);
$response->data['thwepof_options'] = $sections;
}
function display_fields_in_front_end($product_id){
$all_sections = array();
$product = wc_get_product($product_id);
$product_type = $product->get_type();
$categories = THWEPOF_Utils::get_product_categories($product_id);
$tags = THWEPOF_Utils::get_product_tags($product_id);
$sections = THWEPOF_Utils::get_sections();
$section_fields = array();
if($sections && is_array($sections) && !empty($sections)){
foreach($sections as $section_name => $section){
$section = THWEPOF_Utils_Section::get_fields($section);
$all_sections[] = $section;
}
}
return $all_sections;
}Please be informed that in the case of our extra product options plugin, the product page is rendering all extra product option fields. Then while clicking the add to cart button, it takes the extra product option data and stores it on a key named as thwepof_options in the cart. You can use this method on your app.
However, there are some limitations in WooCommerce to add additional product options to the cart using API.
Hope this helps.
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!
Let me answer your questions one by one.
>>in the “order edit” section: I can’t edit the value of the custom fields. Only over the wordpress native “Custom fields”
Unfortunately, currently, you can only edit the custom fields from the “Custom Fields” section in our plugin.
We appreciate your understanding!
>>Is it possible that the user can change this values in the user profile page. I saw in your documentation that you have the checkbox “user meta data”. I dont see this in the free version?
Unfortunately, your requirement cannot be achieved using the lite version of our plugin.
Thank you!
Forum: Plugins
In reply to: [Order Delivery Date And Time] Follow theme designThank you for letting us know.
Have a great day!
Could you please confirm whether you have created the Checkout page using the shortcode [woocommerce_checkout]? Please go through the below link which will guide you in creating pages using shortocodes.
https://woo.com/document/woocommerce-shortcodes/
If this isn’t the exact issue, could you please provide us with more details?
Thank you!
It looks like this might be a site-specific issue. Could you please submit a ticket through our website so we can check further?
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!
Your issue needs a detailed check. Could you please raise a ticket through our website? We hope our technical team will be able to help.
Thank you!
Forum: Plugins
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] New billing-Glad to hear that!
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 requirement is achieved.
We are going to mark this thread as resolved.
Thank you!
Forum: Plugins
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] New billing-We believe that you are using WooCommerce blocks on your website.
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!
Forum: Plugins
In reply to: [Dynamic Pricing and Discount Rules] Offer data does not workUnfortunately, we are not able to recreate the mentioned issue in our local environment.
Could you please let us know if you’re seeing any error messages when you try to save the field?
Thank you!