Saravana Kumar K
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Javascript error@webctrl pls remove any contact details from this thread as it is not recommended
Pls wait for few days as we are nearing for the next release, which might solve your issue
Forum: Plugins
In reply to: [WC Fields Factory] Cant disable specific dateI checked, pls remove the
0
prefix before months or dates.
Instead of5-02-2022
put5-2-2022
now it should work.Forum: Plugins
In reply to: [WC Fields Factory] Cant disable specific date@johnsan96 Hi, will check and update you.
Forum: Plugins
In reply to: [WC Fields Factory] Checkout Fields in emails@jdembowski I just went through the forum guidelines. I get the do’s and don’ts.
Now every support post is being held for moderation. how long will it takes to lift off this restriction.
Since I am releasing next version in a couple of days, the support forum will be crowded I guess.
So pls do the needful.
Forum: Plugins
In reply to: [WC Fields Factory] “(Field Label) – 1”@spaciousmind Pls wait for three days, the next release has this fix.
Forum: Plugins
In reply to: [WC Fields Factory] Checkout Fields in emails@kidman2 Yes you can add title before custom order meta, pls refer the email template here
wp-content/plugins/woocommerce/templates/email/admin-new-order.php
Also refer the new order email class of woocommerce
wp-content/plugins/woocommerce/includes/emails/class-wc-email-new-order.php
Forum: Plugins
In reply to: [WC Fields Factory] Checkout Fields in emails@jdembowski Yes, my intention is to help the user fixing their issue.
I respect the forum policy, I will keep that in mind.Forum: Plugins
In reply to: [WC Fields Factory] Issue ios devices@jdembowski Yes I agree, Thanks for the heads up.
Forum: Plugins
In reply to: [WC Fields Factory] Field rulesClosing, as no reply, assuming the issue is solved.
Forum: Plugins
In reply to: [WC Fields Factory] Javascript errorClosing, as no reply from the OP, assuming the issue is solved.
Forum: Plugins
In reply to: [WC Fields Factory] Make some fields on Product Page only visible to AdminHi,
In your
wp-admin
, pls go toFields Factory
click onYour Product Fields Group
click on the field which you wanted to make it only visible for Authorized users.In the Field’s config view you can see an option called
Logged in Users Only
make itYes
below you will be shown theTarget Roles
check list, where you can select which roles this fields intented for.Once done click on update.
Let me know if it solved your requirement.
Forum: Plugins
In reply to: [WC Fields Factory] Checkout Fields in emailsHere is the updated snippet for adding custom meta Order Notification Email.
function add_fields_on_order_email($_fields = array(), $_sent_to_admin, $_order) { if ($_sent_to_admin) { $_fields[] = array( "label" => "Your Label", "value" => get_post_meta($_order->get_id(), "_custom_{key}", true) ); } return $_fields; } add_filter("woocommerce_email_order_meta_fields", "add_fields_on_order_email", 10, 3);
Forum: Plugins
In reply to: [WC Fields Factory] Checkout Fields in emailsPls check now.
Forum: Plugins
In reply to: [WC Fields Factory] Checkout Fields in emailsfunction add_fields_on_order_email($_fields = array(), $_sent_to_admin, $_order) { if ($_sent_to_admin) { $_fields["Occasion"] = get_post_meta($_order->get_id(), "_custom_message", true); $_fields["Message"] = get_post_meta($_order->get_id(), "_custom_message_box", true); } return $_fields; } add_filter("woocommerce_email_order_meta_fields", "add_fields_on_order_email", 10, 3);
Let me if any issue.
- This reply was modified 2 years, 10 months ago by Saravana Kumar K.
Forum: Plugins
In reply to: [WC Fields Factory] Checkout Fields in emailsHi pls send me your site URL, I will inspect your checkout page and let you know the field’s key.