Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Displaying fields depending on Variation Attribute ValueYes, you can assign different fields for each variations.
Use the Product Variation in the conditions for fields mapping.Forum: Plugins
In reply to: [WC Fields Factory] Image Upload Field Doesn’t WorkHi, I am seeing one javascript error in the browser’s console (relating with a js script from your theme.)
pls change your theme to wordpress default and try again,
if the issue resolved, then we will debug your theme and try to fix it.Forum: Plugins
In reply to: [WC Fields Factory] Image Upload Field Doesn’t WorkHi, pls disable the
Ajax Add to Cartbehaviour, I think your theme is provciding this functionality, you may find the option under your theme’s settings page.To remove the border around the fields, pls put the following css on your theme’s style.css
table.wccpf_fields_table, table.wccpf_fields_table td { border: none !important; }Forum: Plugins
In reply to: [WC Fields Factory] do_filter ???Yesterday I did a silent update for including intro video, with that I have released the fix as well.
Forum: Plugins
In reply to: [WC Fields Factory] Issue with Rankmath GTINgo to
wp-admin/ thereFields Factory -> Admin Fields -> Your admin fields groupThere click on the field that you need to disable required property.
In the config view you will see option called “Required” for disabling it click on “No” option and then update.Forum: Plugins
In reply to: [WC Fields Factory] Issue with Rankmath GTINYou have one required admin field, without giving any value for that field and attempting to save the product will fail, as the validation is failed.
No issue with the plugin, except no validation message is shown, which will be updated in the upcoming releases.
Forum: Plugins
In reply to: [WC Fields Factory] Required fieldGlad to hear.!
Closing as resolved.Forum: Plugins
In reply to: [WC Fields Factory] Required fieldStrange, have you enabled client side validation.?
If not pls go to
Fields Factory -> Settingsthere check theClient Side Validationoption “Yes”, and click “Save Changes” button.If the issue still there, pls share your product page url, I will try to inspect.
Forum: Plugins
In reply to: [WC Fields Factory] Issue with Rankmath GTINI tested with both, Rankmath(free version) & CTX Feed, couldn’t replicate the issue you are experiencing.
My guess is, both CTX Feed & Rankmath share some features, like GTIN and other product meta configurations.
So both plugin has some overlapping functionality which might cause the issue.
Please disable GTIN custom field on CTX setting page, then try again.If nothing happens, disable all plugins except WC & Rankmath and see if the issue still exist.
Otherwise let me know if I can help you inspect your site.
Forum: Plugins
In reply to: [WC Fields Factory] PriorityNoted, will update in the next version.
(I guess you are talking about the hooks used for field’s location)Forum: Plugins
In reply to: [WC Fields Factory] Issue with Rankmath GTINHi,
I tried to replicate your issue on my local machine, I installed
Rank Math - 1.0.80but GTIN option is for PRO version only, I think. so I couldn’t test it fully.If it is possible please provide another video capturing with your browser’s console window opened, that way we can identify any JS exception is happening or not.
Also try to look into your apache
error.logfile, there we may get a hint, whats causing the issue.Forum: Plugins
In reply to: [WC Fields Factory] do_filter ???For now pls use the dirty fix.
WP_PLUGIN_DIR/wc-fields-factory/includes/wcff-builder.phpReplace the
ifcondition block (LN : 1441) with the following.if (has_filter('wccpf_before_field_rendering') && has_filter('wccpf_after_field_rendering')) { $before = apply_filters('wccpf_before_field_rendering', $_meta); $after = apply_filters('wccpf_after_field_rendering', $_meta); $html = $before . $_html . $after; }I will make sure the fix will get into the sub sequent releases.
- This reply was modified 4 years, 4 months ago by Saravana Kumar K.
Forum: Plugins
In reply to: [WC Fields Factory] do_filter ???do_filter:), that can’t be right.If it is then it is an embarrassing bug.
Not sure how it passed, will release an update shortly.Forum: Plugins
In reply to: [WC Fields Factory] PHP 8.0 Quick Code Improvements (to avoid warnings)Its been updated on 3.0.4
Forum: Plugins
In reply to: [WC Fields Factory] Bug: WooCommerce Product Bundle pricing issueHi, here is a dirty fix, if you are not using custom pricing feature of WC Fields Factory then do the following.
WP_PLUGIN_DIR/wc-fields-factory/includes/wcff-product-fields.phpIn the above comment out the following Lines :
100, 101and104I will fix the issue with the upcoming release.