Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Problem with prices: not saving price rulesThe link seems to be broken.
Forum: Plugins
In reply to: [WC Fields Factory] Image Not ShowingYou mean File Upload Field.? or Image Field (Which is Admin Only Field).?
1. If you wanted to show the Image from the back end you can do with the Image Admin Field, but this won’t be carried over to Cart -> Checkout
2. If you want to get Image from User and display it on Cart, Checkout and Order Use File Upload Field
Forum: Plugins
In reply to: [WC Fields Factory] TranslationHi, which wp translation plugin are you using.? WC Fields Factory by default support WPML.
Forum: Plugins
In reply to: [WC Fields Factory] Cart edit works only after multiple attemptsThanks @carver1g,
1. While you are in Cart page, please open your Browser’s Developer Console ( Ctrl + Shift + i ) and see if there any JS error happening, if it is then please post it here.
2. As you aware the WC cart is loaded from the session (Unless you use
persistent_cart), when you update the field’s value in cart, we are loading the cart from session and update the corresponding values and update the session back using the following statementWC()->cart->set_session().So it could be many reason, like Hosting Providers Caching (if they employed one), or if you have any caching plugins in use (but you mentioned of turning off all other plugins and still the issue is there).
My guess is that there is some delay for the session to be updated.
If you have chance to look into your php’s error_log that would be great which will give as some insight.
I thought of putting options for those hook priority as well (may be in future versions).
for now you will have to edit the plugin by yourself, all product page related hooks are in this page only
wp-content/plugins/wc-fields-factory/includes/product-fields.php. especially Line Number: 37Forum: Plugins
In reply to: [WC Fields Factory] CSS changesHi, Copy those
CSSrules and put it on your active theme’sstyle.css. after you don;t have to worry about Plugin Updates.Forum: Plugins
In reply to: [WC Fields Factory] Show admin fields in front end for variable productsHi, that feature is still in progress,
Show on Product Pageoption will work only for theAdmin Fieldsthat has been assigned toProduct View.I will try to release that feature soon.
Forum: Plugins
In reply to: [WC Fields Factory] Datepicker question… 7 day buffer?@djenk thanks, I will include it on the next version.
Forum: Plugins
In reply to: [WC Fields Factory] Translate (required)You are welcome.
Forum: Plugins
In reply to: [WC Fields Factory] Translate (required)I was going to remove that (as its not really necessary to show that) but forgot. anyway I will remove that with my upcoming release, until then please remove that by yourself by editing here.
wp-content/plugins/wc-fields-factory/includes/wcff-builder.phpLine Number : 808Replace the following line
$placeholder = 'placeholder="' . esc_attr($_meta["placeholder"]) . ' (required)"';with this
$placeholder = 'placeholder="' . esc_attr($_meta["placeholder"]) . '"';If you are not able to do it, let me know so that I can send you that modified file alone.
Forum: Plugins
In reply to: [WC Fields Factory] Datepicker question… 7 day buffer?@djenk That would be nice, please post your changes here, I will make sure to add with my upcoming release.
Also I am glad that you found the plugin flow and code structure easy enough to add your custom feature ð
- This reply was modified 8 years, 5 months ago by Saravana Kumar K.
Forum: Plugins
In reply to: [WC Fields Factory] Validation Message on DatePickerRookie mistake âšïļ, I will update, thanks.
Forum: Plugins
In reply to: [WC Fields Factory] variable products not cart inHi, Saw your site, I got the issue, the reason is I am generating fields slug (Field Name) using the Label property (given by you), we just remove all the special chars and replace all the space with
_, this will happens automatically as you type in the Label config, this will have no problem with English, but some time has some issue with other languages.as you can see on your product page that “čéĒãŪčē” field is missing the
nameattribute, so I would suggest recreate all your fields using English and translate it using Fields Factory Multilingual optionSo please follow the below steps.
1. go to
wp-admin -> Fields Factory -> Product Fields -> Your Fields Group Post2. Edit each fields and Update the Label field, use English instead of Japanese.
3. Use
wp-admin -> Fields Factory -> Settingsand enable Multilingual option to translate your fields label and other property. for more info please refer this post.Forum: Plugins
In reply to: [WC Fields Factory] Time picker doesn’t workYou can just trash the Product Field Group Post (and Admin Field Group Post as well), so all the fields will go away. then create a new group and start adding your fields again.
Note: this won’t affect your existing order. so no problem there.
I personally wouldn’t recommend touching the DB directly.
Forum: Plugins
In reply to: [WC Fields Factory] Time picker doesn’t work@thermosmart Min Max hour feature is also added with Version 2.0.5