Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Price not updatingHi, can you post the link to that product page here.?
Forum: Plugins
In reply to: [WC Fields Factory] Errors with Required Fields not WorkingYes it should, I will make sure it resolved with our upcoming release.
Forum: Plugins
In reply to: [WC Fields Factory] Errors with Required Fields not Working1. Did you set the “Message” configuration for those fields on the back end.?
If no message been set then there won’t be any validation error message shown.2. Regarding the previous value restoration (if validation failed). that option is already there, its by default will work, unless you have enabled Fields Cloning option (Which will also be fixed on our upcoming release)
Forum: Plugins
In reply to: [WC Fields Factory] Pass calculated price to checkoutHi,
Is this issue resolved.?
I tested your product, it seems its working now.
The updated price has been forwarded to Cart & Checkout pages.Forum: Plugins
In reply to: [WC Fields Factory] Notice: Trying to get property of non-objectPlease mention your WC, WP and PHP versions.
This Fatal Error on
/wcff-injector.php on line 108means the Global Objectproductis not available, which is highly unlikely.Unless there any configuration related issue.
1. Did you create Product Field.? or Admin Field.?
2. Make sure “Fields Location” is set. On theFields Factory -> Settings -> Fields Location -> Before Add To Cart Button.
3. Make sure “Field Location” on the Appropriate post (Product or Admin) also set properly.Forum: Plugins
In reply to: [WC Fields Factory] Only shows up on variable productsHi, did you create Product Fields.? or Admin Fields.?
Also your condition should be
Product - is equal to - All Productnot
Product Variation - is equal to - All Product + All VariationsForum: Plugins
In reply to: [WC Fields Factory] Import/ExportI am not familiar with that plugin, but anyway import/export option is must, I understood.
Its is already in the pipeline, will try to include with our upcoming release.
Forum: Plugins
In reply to: [WC Fields Factory] Show Group of Fields as Shortcode?Yes, not right now, but shortcode feature will be available with our upcoming release (3.0.4), could take few weeks.
Forum: Plugins
In reply to: [WC Fields Factory] Fill Product Field via UrlHaven’t tested it before (though some users already asked for the same).
Will explore and let you know.
Forum: Plugins
In reply to: [WC Fields Factory] Chinese Character in WooCommerce Booking Calendar@catherinelfoley sorry for your inconvenience, I checked your page, Looks like you are no longer using WC Fields Factory, you are using Woocommerce Booking plugin (Premium), and you still have the same issue.
As I mentioned in my previous reply, it is a “Charset encoding issue”, has nothing to do with plugin itself.
Please consult your theme developer, or post to “Woocommerce Booking” support, since its a premium plugin they have to provide you the solution.
Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Number Field validation not workingClosing the thread
Forum: Plugins
In reply to: [WC Fields Factory] Errors on checkout pageHi, thankls for posting this, it is an issue.
Here is a quick fix.
/www/wp-content/plugins/wc-fields-factory/includes/wcff-checkout-fields.php on line 177replace the following function
private function get_fields_meta( $_type ){ $res = get_post_meta( get_posts( array( 'post_type' => 'wcccf', 'name' => $_type ) )[0]->ID ); $return = !empty( $res ) && is_array( $res ) ? $res : array(); return $return; }with the below snippet
private function get_fields_meta( $_type ) { $posts = get_posts(array('post_type' => 'wcccf', 'name' => $_type)); if ($posts && is_array($posts) && count($posts) > 0) { $res = get_post_meta($posts[0]->ID); return (!empty($res) && is_array($res)) ? $res : array(); } return array(); }The fix will be available with our upcoming release
Forum: Plugins
In reply to: [WC Fields Factory] Date Picker not showingHi, is that a only error or more.?
This is probably means either jquery UI not loaded or loaded twice.
Some other plugin might load another version of jquery UI.
Disable all other plugins except Fields Factory & Woocommerce and activate the wordpress default theme, and see if the error still exist or not.
Let me know your finidings.
Forum: Plugins
In reply to: [WC Fields Factory] Number Field validation not workingHi, please change the
Fields Locationoption fromBefore Add To Cart FormtoBefore Add To Cart Buttonfor now.Since the
Before Add To Cart Formoption put the custom fields above theformtag, the html5 validation not applying there.Regardless its a bug, we will fix it with our upcoming release. Until then please use the above suggestion.
- This reply was modified 7 years, 3 months ago by Saravana Kumar K.
Forum: Reviews
In reply to: [WC Fields Factory] Some great granular customisationHi thanks for the review.
I agree on that
tablepart, will try to migrate fromtabletodiv.
But I am afraid that will break the css rules of many users, who might customized.Anyway
divis the way forward. will see