sarkparanjothi
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Order Export] Drag and drop not working in Firefoxhi @grrog,
Sorry for the inconvenience, we will check and update you.
Hi @rafaelrodrigues,
Thanks for you support :).Forum: Plugins
In reply to: [WC Fields Factory] Custom Field for individual ProductFiled data will be with order item meta, It will show on order item (Below product name), So the custom field data not for the order.
If you add four different product custom data will show each product separately.
Forum: Plugins
In reply to: [WC Fields Factory] Render Radio Buttons to Create as TabsNot required to change the html rendering, just hide the radio button it will work.
.wccpf-field[name="test-spec-1"] { display: none; } .wcff-option-wrapper-label { padding: 10px; color: #fff; background: #222; }
Forum: Plugins
In reply to: [WC Fields Factory] Could not accept value 0Hi @lili0allen,
For validation we are used empty function we are miss understand it.
This issue will be fix next version.Please follow the instruction: Go to plugins/wc-fields-factory/includes/wcff-validator.php
open the file and find
!empty($_val)
and replace with
trim( $_val ) != “”
Thanks
Forum: Plugins
In reply to: [WC Fields Factory] How to reset checkout fields to default?Hi, there woocomerce default checkout fields you can’t able to remove you can only deactivate it. If you like to rearrange the field you can do it. It have an option.
If you like to go back default. Go to your website phpmyadmin find ‘post_name=shipping-fields/billing-fields’ you can get post id using this id find all meta data from post_meta table remove all will work default setting.
Currently we don’t have an option for default setting. Please wait till next release.
Forum: Plugins
In reply to: [WC Order Export] PHP warningHi, @grrog,
Sorry for that issue,
Please follow my instruction for quick fix.
open/wp-content/plugins/wc-order-export/wcexord_export.php this file and goto line number 131 copy the line$custom_meta = array();
and paste before 128
if( function_exists( “wcff” ) ){
Save the file, it will work.
Thanks
Forum: Plugins
In reply to: [WC Fields Factory] Adds a maximum of one field.For initial stage of creating new field in a group please use english keyword. After updating (saving) the field group you can change the label name.
Thanks!
- This reply was modified 6 years, 1 month ago by sarkparanjothi.
Forum: Plugins
In reply to: [WC Fields Factory] Date Picker not showingForum: Plugins
In reply to: [WC Fields Factory] How to Save Custom Field Values in Checkout?hi @wallacelin, Checkout fields will save automatically while order placing, If you want hide the checkout field from checkout page please try to use hidden field.
Checkout field will save to order_meta like “wcccf_{billing/shipping/custom}_given_field_name”
For admin field value show in address section.
Thanks.
Forum: Plugins
In reply to: [WC Fields Factory] How to set number field as pricingNumber field have many pricing rule like ( greater then, less then, equal, not equal ). But we don’t have an option for user type product price in number filed. Instead of using number field you can use select option with price rule.
We will keep in our mind for this option in our next release ma be.
Thanks
Forum: Plugins
In reply to: [WC Fields Factory] Does it work with WordPress 5.0.3?hi @bigmoxy,
Yes, we still active also we checked with wordpress 5.0.3 It works great!.
So please go ahead.Thanks.
Forum: Plugins
In reply to: [WC Fields Factory] Date Picker Rule at Submission & Custom File Validation.Hi @roki9999,
You can do you costume validation in plugin/wc-fields-factory/includes/wcff-validator.php and find ‘validate_product_fields’ method for product field or find ‘validate_admin_fields’ method for admin field you can inject your costume validation here.Thanks
Forum: Plugins
In reply to: [WC Fields Factory] Date and Color Picker in Checkout Field Not Working@jrgalia, Sorry for that issue,
We have some small mistake in our last version. Please follow my instruction for quick fix.
Goto Plugin/wc-fields-factory/includes/wcff-checkout-fieilds.php
Open this file and go to 52 line// add_action( “woocommerce_after_checkout_form”, array( $this, “enqueue_client_side_assets” ) );Replace the line likeadd_action( "woocommerce_after_checkout_form", array( $this, "enqueue_client_side_assets" ) );
We will fix this issue in our next release.
Thanks.@donaldking247, Yes you can change fields visibility on product page where ever you want. Check the below attachment
Please try with ‘After Product Summary’