Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] how to show wc field factory custom field in a postHi, refer this answer, it might be helpful for your scenario.
Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Using With Quote Request PluginHi, yes you can embed these custom fields on any valid wordpress templates.
Use the following filter to get all fields for a particular product.
$all_fields = apply_filters( 'wccpf/load/all_fields', 'your-product-id' );Above filter return all the custom fields for a given product, You can iterate through
$all_fieldsrender these fields.refer
/WP-PLUGINS/wc-fields-factory/classes/product-form.phpLN:49 for rendering custom fields.Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Quantity and Fields Group TitlesHi,
Thank you for your suggestions. I will add that min quantity fix with my next release.
I am not sure where I can place the setting for Fields Group Title, apart from global setting, but your point is right, I will have a look.
Please post your testing and suggestions, also if this plugin is helpful please give your ratings and review.
Right now I am working on two major features.
1. Custom fields editing option on Cart page.
2. Custom fields for Woo Admin pages ( Product, Product Category, Variations … back ends screens )Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Wrap all fields in a divHi, WC Fields Factory V1.2.2 has action for this purpose, you can use the following action to
echoyour custom wrapper around the custom fields.1.
wccpf/before/fields/start
2.wccpf/after/fields/endRegards
SarkForum: Plugins
In reply to: [WC Fields Factory] Change The Fields Location on Product PageThis features has been included in the latest version of WC Fields Factory ( V1.2.2 ), pls update.
Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Color pickerHi, This features has been implemented on WC Fields Factory V1.2.2, pls check
Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Date Picker multiple issues…Hi @mw360, Checkout the latest version of WC Fields Factory ( V1.2.2 ), All your suggestions has been implemented along with lot of others.
Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Add label to each QTY of same itemHi all, WC Fields Factory V1.2.2 has been released with this capability ( Field Cloner ). check this out.
Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] How To Add Text to WC Product Field – File TypeHi, sorry for the delayed response.
There is new version of WC Fields Factory available, please update it first.
You can add extra description to file field by using the following snippet.
add_action( 'wccpf/before/field/start', 'wccpf_add_file_field_description' ); function wccpf_add_file_field_description( $field ) { if( $field["type"] == "file" ) { echo '<lable>Provide your additional descriptions here.!</label>'; } }Thank You.
SarkForum: Plugins
In reply to: [WC Fields Factory] how to show wc field factory custom field in a postHi, Using WC Fields Factory you can add custom fields to “Product” not to “post”.
It will work only with Woocommerce product.
Forum: Plugins
In reply to: [WC Fields Factory] Wrap all fields in a divHi, as of now there is no action for what you asked, you need to edit the plugin to do that.
WP_PLUGINS/wc-fields-factory/classes/product-form.phpreplace
inject_wccpf()function with thisfunction inject_wccpf() { Global $product; $is_datepicker_there = false; $is_colorpicker_there = false; $all_fields = apply_filters( 'wccpf/load/all_fields', $product->id ); echo '<div id="all-wcfield-tables">'; foreach ( $all_fields as $fields ) { foreach ( $fields as $key => $field ) { /* generate html for wccpf fields */ $html = apply_filters( 'wccpf/render_product_field/type='.$field["type"], $field ); /* 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 ); } echo $html; if( $field["type"] == "datepicker" ) { $is_datepicker_there = true; } if( $field["type"] == "colorpicker" ) { $is_colorpicker_there = true; } } } echo '</div>'; $this->wccpf_front_end_enqueue_scripts( $is_datepicker_there, $is_colorpicker_there ); }Forum: Plugins
In reply to: [WC Fields Factory] Date Picker multiple issues…@mw360 thank you for posting this, I will include it in my next release.!
Please keep posting your suggestion.!
Thank you all for reporting this. I got the bug, it’s been fixed, please use V1.2.1
and let me know it’s really fixed.!
@purbeckpixels, not sure how this happens,
I have tested with 2.2.X, 2.3.X and 2.4.X, I am not able to replicate your issue.
could you provide me some info, versions of wp and wc, also the name of your theme, and the list other plugins you are using.
I would be happy to assist you.!
Forum: Plugins
In reply to: [WC Product Bundles] Product count@renangmi could you be more specific, how it affect.?