Sanesh Acowebs
Forum Replies Created
-
Hi, you can set the default selection value by clicking on the radio button near the options label section. Please check the screenshot https://tinyurl.com/yebvwauc
Hi, thanks for trying our checkout field editor plugin. Invalid markup is created using a CSS class (woocommerce-invalid) generated by Woocommerce. Woocommerce creates this class for every field except the radio field. The style can be changed from your theme using the class “woocommerce-invalid”. For the case of a checkbox field make sure that you have added field Value.?
On checking your website we found that most of your products are downloadable products, which do not support shipping by default from Woocommerce.
Hi, We need more details about this issue. Can you please come to Acowebs live chat support. Thanks.
Forum: Plugins
In reply to: [Checkout Field Editor for WooCommerce - Checkout Manager] Adding to e-mailAs we haven’t heard back from you further, we assume that this issue has been resolved at your end and considering this ticket as closed. Please don’t hesitate to get back to us if you require any further assistance or clarifications from our end in the future. Thanks!
Can you please confirm that you have enabled Show Field in Order Email settings under the advanced section of that field setting. Refer screenshot: https://tinyurl.com/ych5t7mo
Hi, as this is regarding a premium option we cannot give more details here. If you want to get detailed instructions, then please come to Acowebs live chat support. Thanks.
Hi, This is our premium demo link: https://wcfe.demo.acowebs.com/wp-admin/.
Please check the required functionality.Hi, please follow the instructions below:
1. Go to WordPress Dashboard -> Settings -> Checkout fields -> Address formatting.
2. Select the Billing & shipping address fields that you want to add from respective select fields.
3. Add required Address format for country on the “Address format customize” field. More instructions and an example setting format are given below that field setting.
Hope you can follow this instruction and move forward.Hi, as we said earlier, Address formatting is our premium version option. You are still trying on our free version demo. Please use the premium version demo link provided at the plugin details section tab. If you want a detailed instruction, then please come to our Acowebs live chat support. Thank you.
Hi, thanks for using our checkout plugin. Address formatting is our premium version option. You can test this option on the premium demo link provided at the plugin details section tab.
Forum: Plugins
In reply to: [Checkout Field Editor for WooCommerce - Checkout Manager] Adding to e-mailHi, We have tested our checkout plugin with the email customizer plugin you shared and we are getting all fields in order emails. Can you please confirm that you have enabled Show Field in Order Email settings under the advanced section of that field setting. Refer screenshot: https://tinyurl.com/ych5t7mo
Forum: Plugins
In reply to: [Checkout Field Editor for WooCommerce - Checkout Manager] Adding to e-mailHi, Our extra checkout fields are added to Woocmmecrce hooks present on the email template (woocommerce_email_customer_details, woocommerce_email_after_order_table). If your customized email template contains this hook then it will come automatically, Otherwise you need to hook with some custom coding. Can you please share the email customizer plugin name so that we can check the issue.
As we haven’t heard back from you further, we assume that this issue has been resolved at your end and considering this ticket as closed. Please don’t hesitate to get back to us if you require any further assistance or clarifications from our end in the future. Thanks!
Hi, to set default checkout billing country you can use the following code from Woocommerce documentation to your functions.php.
add_filter( 'default_checkout_billing_country', 'awcfe_change_default_checkout_country' ); function awcfe_change_default_checkout_country() { return 'US'; }