Saravana Kumar K
Forum Replies Created
-
Forum: Reviews
In reply to: [Sark Migs] Will be perfect when changes are madeHi, thank you for the notification, it’s been updated now ( V1.2 )
Forum: Plugins
In reply to: [Sark Migs] Your plugin is broken at the moment.Oops, thank you for notifying. I have fixed and updated ( V1.2 )
Forum: Plugins
In reply to: [WC Fields Factory] Adding this functionality in the cartThat makes sense, If customer order a same product more than one, then each quantity should have a custom fields on it’s own.
Let me try to this option with WC Fields Factory. give me some time.
Thank you for pointing out this issue, I have solved and updated the plugin V1.1.3
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] Add to bag and qty is missingThis will bring the custom fields
table.wccpf_fields_table td.label { display:table-cell !important; }Forum: Plugins
In reply to: [WC Fields Factory] Add to bag and qty is missingDid you add those css to your style.css ( in your Active theme ), because I am not seeing those overridden css there on your page.
The problem is with your theme’s style, you can easily see & edit your style with chrome inspect element ( or firefox ).
Forum: Plugins
In reply to: [WC Fields Factory] Add to bag and qty is missingJust add those css to your style.css ( use !important if it is not worked ).
Yes I am able to see add to bag button also.
Forum: Plugins
In reply to: [WC Fields Factory] Add to bag and qty is missingHi,
It looks like your theme needs some CSS tweaks, Qty box & Price are there only I can see it through Developer Tools.
#main-wrapper .all-menu-details .single-menu .qty-cart.simple-product { height:auto }#main-wrapper .all-menu-details .single-menu .price-option { height:auto; }also you might use Vertical Layout for the checkbox custom fields.
Forum: Plugins
In reply to: [WC Fields Factory] date picker?Hi, That hook which I have posted with my previous reply, goes into your Theme’s functions.php, also I already given you the reference for altering radio button behavior.
Forum: Plugins
In reply to: [WC Fields Factory] How to get custom field value in cart pageHi, this plugin won’t support dynamic pricing.
If you wanted to change product price dynamically, I have an in depth article here
Forum: Plugins
In reply to: [WC Fields Factory] Arabic languageHi, It should be an encoding issue with your theme, I checked with Twenty Twelve theme and it’s working perfectly for Arabic ( I used google translator to produce Arabic words ) language ( tested in chrome & firefox ).
Forum: Plugins
In reply to: [WC Fields Factory] date picker?Hi, Thanks for your review.!
Yes you can override the way custom fields rendered in product page.
WC Fields Factory trigger “wccpf/before/fields/rendering” filter before rendering each fields into product page.
function wccpf_override_label( $field, $html ) { if( $field["name"] == "name_on_tshirt" ) { $html = '<div class="your class"> <label>Overrided Value</label> <input type="text" name="'.esc_attr( $field["name"] ).'" value="'. esc_attr( $field["default_value"] ) .'" /> </div>'; } return $html; } add_filter( 'wccpf/before/fields/rendering', 'wccpf_override_label', 5, 2 );To override radio buttons refer PLUGINDIR/wc-fields-factory/classes/fields/radio.php line no 121 to 144.
If you wanted to override the labels alone refer this article
I am also planning to release next major version with three more fields type Image, Date Picker and Color Picker
Happy Blogging.!
Forum: Plugins
In reply to: [WC Fields Factory] Awesome! Thank you for this plugin@raks17, have you updated to latest version ( v1.0.2 ). by the way which field type has that issue.?
Forum: Plugins
In reply to: [WC Fields Factory] Awesome! Thank you for this pluginYou are welcome.!