Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] File Upload Not Working on AndroidThanks for reporting this, wilkl check and update soon.
Forum: Plugins
In reply to: [WC Fields Factory] Bug in wcff-client.jsRookie mistake 🙂 thanks for posting, really appriciate it.
will update it.
Forum: Plugins
In reply to: [WC Fields Factory] Upload shortcodeHi, yes the shortcode option is in the pending list for very long time, will try to include it with our upcoming release.
Forum: Plugins
In reply to: [WC Fields Factory] Pricing Rules unable to addHi, can you share us your error_log output, ant error message or warning at the time of add to cart action. that would be helpful.
Also please mention your PHP version, WP & WC Version.
Noted, will be fixed on the next update.
Forum: Plugins
In reply to: [WC Fields Factory] Chinese Character in WooCommerce Booking CalendarLooks like a Charset encoading issue, as this is very specific to some users.
Here is some useful thread on this topic
In the mean time we will update the Jquery UI library to the latest (currently its in v1.11.1 – 2014-08-13).
- This reply was modified 7 years, 4 months ago by Saravana Kumar K.
Forum: Plugins
In reply to: [WC Fields Factory] YITH request a quote compatibilityWe have no way to check the compatibility since “YITH request a quote” is a premium plugin.
Did you try alreday.? or just sent us the plugin so that we can test and update you same.
Forum: Plugins
In reply to: [WC Fields Factory] Problem with prices: not saving price rulesHi, that’s exactly how it works, the price won’t updated in the product page ( that some thing we are working on, but we have to rely on JS to update the price and we cannot be sure that your theme might display the price using different tags and css classes ).
So right now it will update the price on Cart -> Check Out and Order.
Forum: Plugins
In reply to: [WC Fields Factory] Clone/repeat fields without inserted informationNoted, I will update it on my next release, for you I will try to put an updated snippet here shortly.
Forum: Plugins
In reply to: [WC Fields Factory] Datepicker Client Side Validation not workingThanks I will release the fix with my next release. until then if you want please update your
wc-fields-factory/assets/js/wcff-client.jsfile with the following snippet.LN : 333
this.doValidate = function( field ) { if( field.attr("wccpf-type") !== "radio" && field.attr("wccpf-type") !== "checkbox" && field.attr("wccpf-type") !== "file" ) { if(field.attr("wccpf-type") !== "select") { if( this.doPatterns( field.attr("wccpf-pattern"), field.val() ) ) { field.nextAll('.wccpf-validation-message:first').hide(); } else { this.isValid = false; field.nextAll('.wccpf-validation-message:first').show(); } } else { if (field.val() !== "" && field.val() !== "wccpf_none") { field.nextAll('.wccpf-validation-message:first').hide(); } else { this.isValid = false; field.nextAll('.wccpf-validation-message:first').show(); } } } else if( field.attr("wccpf-type") === "radio" ) { if( field.closest("ul").find("input[type=radio]").is(':checked') ) { field.closest("ul").next().hide(); } else { field.closest("ul").next().show(); this.isValid = false; } } else if( field.attr("wccpf-type") === "checkbox" ) { var values = field.closest("ul").find("input[type=checkbox]:checked").map(function() { return this.value; }).get(); if( values.length === 0 ) { field.closest("ul").next().show(); this.isValid = false; } else { field.closest("ul").next().hide(); } } else if( field.attr("wccpf-type") === "file" ) { if( field.val() == "" ) { field.nextAll('.wccpf-validation-message:first').show(); this.isValid = false; } else { field.nextAll('.wccpf-validation-message:first').hide(); } } }- This reply was modified 8 years, 4 months ago by Saravana Kumar K.
Forum: Plugins
In reply to: [WC Fields Factory] [Feature Request] WooCommerce Installation CheckI totally agree, I shouldn’t assume that WC is already active. I will update in my next release, until then if you want you can update your wccf.php (root file), with the following snippet
LN : 84
function wcff() { /* Expose WC Fields Factory to Global Space */ global $wcff; /* Make sure woocommerce installed and activated */ if (!function_exists('WC')) { add_action('admin_notices', 'wcff_woocommerce_not_found_notice'); } else { /* Singleton instance of WC Fields Factory */ if (!isset($wcff)) { $wcff = new Wcff(); } } return $wcff; }Forum: Plugins
In reply to: [WC Fields Factory] function.php add_action does not workFrom version 2.0.0 I have replaced
/with_on all Wc Fields Factory related actions and filters. (It’s on the release note).So
add_action( 'wccpf/before/field/start', 'wccpf_field_wrapper_start' );has to be like this
add_action( 'wccpf_before_field_start', 'wccpf_field_wrapper_start' );Forum: Plugins
In reply to: [WC Fields Factory] Checkbox formatThanks @lorro
Forum: Plugins
In reply to: [WC Fields Factory] Required field doesn’t work with placeholderI guess you are referring to select box right.? I checked now it seems working fine for me, anyway you could enable the client side validation until we sorted it out.
Forum: Plugins
In reply to: [WC Fields Factory] Add link to Product titleHi, can you elaborate a bit more, I am not sure I understand your requirement.