Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Datepicker inline placement and 12 hour am/pm time formatHi all, sorry for the delayed response. for quick solution please edit the following file to switch to the 12 hours format. go to
wc-fields-factory/classes/fields/wcff-datepicker.phpLN : 475and replace the line with the following
$(this).datetimepicker( { timeFormat: 'hh:mm: TT', ampm: true,I will include this feature as an option in the feature release.
Regards
SarkHi,
All custom fields are stored as order line meta, which could be easily retrieved by using wc_get_order_item_meta().
You can do something like this
$order = new WC_Order( $order_id ); foreach ( $order->get_items() as $item_id => $item ) { // "your_item_meta_key" this would be your custom field's label wc_get_order_item_meta( $item_id, "your_item_meta_key", true ); }Forum: Plugins
In reply to: [WC Fields Factory] multiple date for adminHi,
for this you will have to edit the plugin file by yourself ( which is not recommended ).
wc-fields-factory/classes/wcff-product-form.phpLN : 902 function iswccpf_front_end_enqueue_scripts()this is where you will have to enqueue your custom datepicker js files.and go to
wc-fields-factory/classes/fields/wcff-datepicker.phpLN : 441 function isinitialize_datepicker_field()this is where the initialization of datepicker script located, you will have to modify this too.Forum: Plugins
In reply to: [WC Fields Factory] Displaying field on a product category page.Hi using Wc Fields Factory you can add custom fields to any product’s front end page, product backend admin screen and product category’s backend admin screen.
But you cannot add custom fields in shop archive page nor product cat page.
( I guess, you mean
product category listing pageas the front end product cat page )correct me if I am wrong.
Forum: Plugins
In reply to: [WC Fields Factory] Plug-in Conflict with WC Smart Coupons ExtensionHi nyckl,
Can you check your browser’s dev console for any Javascript conflict, while you are in checkout page.
(Ctrl + Shift + iand go toconsoletab )It should be a JS conflict, because wc fields factory has nothing much to do in checkout page.
and It’s not advisable asking admin access or email on this forum.
please refer this for do’s and don’ts.Forum: Plugins
In reply to: [WC Fields Factory] Admin Fields Not Showing in Front End@jan Dembowski, good point, noted thank you.!
Regards
SarkForum: Plugins
In reply to: [WC Fields Factory] Admin Fields Not Showing in Front EndHi @htezabwala, It’s a simple error on your product setup, that you haven’t entered any price for the product ( actually it’s mandatory ).
I have put some price there. now it’s displaying Admin and Product fields too.
Hi,
It could be an issue with your current theme or one of your active plugins, to find out.
1. Deactivate your current theme & switch to twentytwelve theme or any of other WordPress default theme, and check whether it’s working. if it does then the issue is with your theme being used.
2. If it doesn’t work even after switching to WordPress default theme, then deactivate all plugins except
Woocommerce & Wc Fields Factory and check again.Hi, thanks for your comment.
All custom fields are stored as order line meta, which could be easily retrieved by using
wc_get_order_item_meta().You can do something like this
$order = new WC_Order( $order_id ); foreach ( $order->get_items() as $item_id => $item ) { wc_get_order_item_meta( $item_id, "your_item_meta_key", true ); }Forum: Plugins
In reply to: [WC Fields Factory] Admin Fields Not Showing in Front EndHi @htezabwala, by default admin fields will not be displayed on the front end product page, unless you have configured so.
The following option has to be set for each admin fields you have created.
1. Show on Product Page this option has to be turned on to show the fields on the product page.
2. Show on Cart & Checkout this option has to be turned on to show on cart & checkout page.
3. Order Item Meta this option has to be turned on to add this fields as order meta.
You may also refer this article for further details.
Hi, thank you for posting this issue, fix has been released with V1.3.4, please update.
Forum: Plugins
In reply to: [WC Fields Factory] Field shows wrong value on product pageHi, thank you for posting this issue, the fix has been released with V1.3.4, please update.
Forum: Plugins
In reply to: [WC Fields Factory] Color picker default color is black?Hi, this option available with V1.3.4, please update.
Forum: Plugins
In reply to: [WC Fields Factory] Change price and quantity based on custom number fieldsHi, have you referred this article
Forum: Plugins
In reply to: [WC Fields Factory] Client Side ValidationHi,
you will have to edit the
wccpf-front-end.jsfile by yourself.
just comment it out the LN : 75 fromwc-fields-factory/assets/js/wccpf-front-end.jslike this
//e.data.doValidate( $(this) );