Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Product Bundles] TranslationHi,
Rookie mistake, forgot to load plugin’s text domain. now it expect your .po files at WP_PLUGIN/wc-product-bundle/languages/
Just update your plugin ( I haven’t changed the Version though )
Forum: Plugins
In reply to: [WC Product Bundles] TranslationMake sure your wordpress folder has proper write permission. which is most likely the issue.
Forum: Plugins
In reply to: [WC Product Bundles] Translation@renangmi, The translation support added, its available with Version 1.0.5
Forum: Plugins
In reply to: [WC Product Bundles] Plugin mess up WPThank you for pointing out this issue, it has been fixed on V1.0.4.
Forum: Plugins
In reply to: [WC Fields Factory] Change The Fields Location on Product PageDave,
There are two option,
You can directly edit file WP_PLUGIN/wc-fields-factory/classes/product-form.php LN : 14.or
do some thing like this
add_filter( 'wccpf/before/fields/rendering', 'redirect_fields_hook', 1 ); function redirect_fields_hook() { return ""; } add_action( "woocommerce_after_main_content", 'inject_fields_on_summary' ); function inject_fields_on_summary() { Global $product; $all_fields = apply_filters( 'wccpf/load/all_fields', $product->id ); foreach ( $all_fields as $fields ) { foreach ( $fields as $key => $field ) { /* generate html for wccpf fields */ echo apply_filters( 'wccpf/render_product_field/type='.$field["type"], $field ); } } }
but I will try to include that as an option on my next release.
Forum: Plugins
In reply to: [WC Fields Factory] Rule by TagsYes you can, some thing like this.
add_filter( 'wccpf/before/fields/rendering', 'render_fields_by_tag' ); function render_fields_by_tag( $field ) { global $post; $html = ""; if( has_tag( "Your Tag", $post ) ) { $html = '<input type="text" name="'. esc_attr( $field["name"] ) .'" value="'. esc_attr( $field["default_value"] ) .'" placeholder="'. esc_attr( $field["placeholder"] ) .'" maxlength="'. esc_attr( $field["maxlength"] ) .'" />';' } return $html; }
Forum: Plugins
In reply to: [WC Fields Factory] Add label to each QTY of same itemHi, yes that option is under development, though I can’t promise any timeline, will let you know once it’s done.
Forum: Reviews
In reply to: [WC Product Bundles] Got stuck on choosing items to bundle together@emgraphics, thanks for your time, could you tell me the versions of Mac OS, firefox and chrome so that I can test it and fix the issues.
Forum: Plugins
In reply to: [WC Fields Factory] Selects only have first valueThank you for rising this issue and also for your suggestion.
I have removed ‘variations’ class from fields container table. also I have included
wccpf/fields/container/class
filter for adding custom class to the container tables.Pls keep me post if you find any other issues ( Also your ratings & reviews, if it helped ).
@vfssean thank you, yes that is the problem.
@samueldgt, Issue has been fixed, try V1.1.5.
Forum: Plugins
In reply to: [WC Fields Factory] Problem with character "\n" on version 1.1.4@samueldgt, “\n” character issue has been fixed, try V1.1.5.
Pls keep me post if you find any other issues ( Also your ratings & reviews, if it helped ).
Forum: Plugins
In reply to: [WC Fields Factory] Selects only have first valueForum: Plugins
In reply to: [WC Fields Factory] Selects only have first value@vfssean, Thank you for the update, I will test and update the plugin.
Forum: Plugins
In reply to: [WC Fields Factory] Arabic languageHi teekai,
It’s been fixed, try the latest version – 1.1.4.
Forum: Plugins
In reply to: [WC Fields Factory] "Field label" unicode encoding problemHi, thanks for raising this issue, It’s been fixed, try the latest version – 1.1.4.