Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Multilingual – no “English”-option (wpml)Never mind, it’s my fault, I missed to localize the label field. all other fields were localized except label field.
Replpace the
handle_label_fieldmethod in thewp-content/plugins/wc-fields-factory/includes/wcff-injector.phpLN : 370 with the following code.private function handle_label_field($position = "beginning") { foreach ($this->product_fields as $fields) { if (is_array($fields) && count($fields) > 0) { foreach ($fields as $field) { if ($field["type"] == "label" && $field["position"] == $position) { if ($this->multilingual == "yes") { /* Localize field */ $field = wcff()->locale->localize_field($field); } /* generate html for wccpf fields */ $html = wcff()->builder->build_user_field($field, "wccpf"); /* Allow third party apps logic to render wccpf fields with their own wish */ if (has_filter('wccpf_before_fields_rendering')) { $html = apply_filters('wccpf_before_fields_rendering', $field, $html); } do_action('wccpf_before_field_start', $field); echo $html; do_action('wccpf_after_field_end', $field); } } } } }I will update this fix on tyhe upcoming release.
- This reply was modified 4 years, 2 months ago by Saravana Kumar K.
- This reply was modified 4 years, 2 months ago by Saravana Kumar K.
Forum: Plugins
In reply to: [WC Fields Factory] Multilingual – no “English”-option (wpml)Could you share the affected product page url, that might help to asses the issue.
Forum: Plugins
In reply to: [WC Fields Factory] Multilingual – no “English”-option (wpml)I think, I need to add an extra option for setting default language.
I have updated the
wcff-locale.phpfile for setting German as default language.
Pls find the updated file here.Replace the
wcff-locale.phpinwp-content/plugins/wc-fields-factory/includes/Let me know if it doesn’t solve the problem.
Forum: Plugins
In reply to: [WC Fields Factory] PHP Fatal ErrorHi, could you delete the WC Fields Factory plugin and reinstall it, I had released a silent update (a week ago), for the same issue.
Pls let me know if you still facing this issue.
Forum: Plugins
In reply to: [WC Fields Factory] Only 1 Field possibleThe issue with Enfold theme has been resolved (via a silent update). php 8.1.x compatibilities will be released with the upcoming releases.
Forum: Plugins
In reply to: [WC Fields Factory] Price Rule Won’t SaveYou can view it through cpanel’s file manager.
You can also enable debug mode on your wp-config.php file, which will also display error & warning on wp-admin page itself.
Forum: Plugins
In reply to: [WC Fields Factory] Price Rule Won’t SaveHi, any error message on browser console, or on php error.log file, that might be helpful determining the issue.?
Forum: Plugins
In reply to: [WC Fields Factory] Only 1 Field possibleHi, the posted log entries didn’t have anything related to Fielods Factory.
If it is ok, pls share a temp access to your site, I will look into the issue.
Forum: Plugins
In reply to: [WC Fields Factory] Assign images to product fieldsIf you could wait for 1 week, the next version will be released.
Forum: Plugins
In reply to: [WC Fields Factory] Assign images to product fieldsYou mean, you want to display radio buttons like image group, where user can choose one option.?
Current version doesn’t do this, this is on the development on the upcoming release.
If you wanted to do this for one or two products we have work around for this. let me know.
Forum: Plugins
In reply to: [WC Fields Factory] Only 1 Field possibleIn your browser’s console, do you see any exception message.?
Also if you have chance pls look into your php’s error.log file.
there we might get some hints.- This reply was modified 4 years, 3 months ago by Saravana Kumar K.
Forum: Plugins
In reply to: [WC Fields Factory] Database field not showingThe fields are stored as post meta. the post types are the following.
wccpf– Product Fields
wccaf– Admin Fields
wcccf– Checkout FieldsThe recommended way to update post meta is to use
update_post_metafunction.If you click on the date field, you will see the config view, there you can disable dates along with other configurations.
Forum: Plugins
In reply to: [WC Fields Factory] Image Upload Field Doesn’t WorkAfter examining your site, no technical issue found, only configuration related issue found.
For file upload field, we don’t have to set “Upload Path” property (unless you want to upload the image into different folder other then “wp-upload”).
Forum: Plugins
In reply to: [WC Fields Factory] Image Upload Field Doesn’t Worksark(at)sarkware.com, will try to debug.
Forum: Plugins
In reply to: [WC Fields Factory] Image Upload Field Doesn’t WorkJust checked, If there any chance for you to look into the php’s
error.logfile. there we might get some clues, what causes the issue.Otherwise if it is ok, pls share a temp admin access to me, I will do the debug and try to fix.