ulihake
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Checkbox fieldHello rafals75.
You need something like an “accept our terms and conditions” and that this is required at the same time… That’s what you want?
Regards.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Custom1 validation of text fieldHello again Christian.
You’re completely right. I made a mistake when I implemented the password field support which had some impact on the validation of other field types. This is corrected. I will roll out an update which includes the fix for this in two or three days.
If you have an urgent need for this you can contact with me via http://takebarcelona.com by mail using my author page and I will send you a version which includes the fix.
uli
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Custom1 validation of text fieldHello Christian.
Thanks for your feedback. I will check this and provide some information.
uli
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Incompatibility with grouped productsHello dbs76.
This should be fixed with 1.6.2
Thanks again for your effort and feedback.
Regards.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Incompatibility with grouped productsOk. Identified. I will provide a fix for this. Sorry.
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Incompatibility with grouped productsOk, thanks for your reply. I will do some further testing on my side and get back to you.
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Labels and user profilesHello dbs76.
I will provide an update for this today or tomorrow (ver. 1.6.2). Please respond to your other support thread because I would like to close and/or address this in the same update.
Thanks.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Incompatibility with grouped productsHello dbs76.
You indicate a problem with measureIt.js on line 120 but WooCommerce Poor Guys Swiss Knife does not load nor use a file with the name measureIt.js.
To be sure I configured a grouped product and I can not reproduce your bug. This does not mean that you experience the problem in conjunction with another plugin. For now I would like to ask you do deactivate all other plugins apart from WooCommerce and WooCommerce Poor Guys Swiss Knife. If the error persists please report this here, if not you should try to identify if there’s another plugin that interferes by activating one by one the rest of your plugins.
Regards.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Incompatibility with grouped productsHello dbs76.
Thanks for your feedback again. Hope that you can wait some days, I will try to address your feedbacks this weekend.
Regards.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Labels and user profilesHello dbs76.
WooCommerce provides billing and shipping address handling on the order page inside the administration. Customers can change their billing and shipping address also on the “Edit My address” page.
It’s true that labels do not change on the general users.php page within WordPress, which also reflects all registered customers. I will try to provide a solution for this next week.
Regards and thanks for your feedback.
uhForum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Labels and placeholders hideWelcome.
Thanks for your feedback. I will add this to the FAQ.
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Labels and placeholders hideCould you please do one thing, could you save the settings page of WooCommerce Poor Guys Swiss Knife once?
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Labels and user profilesHello dbs76.
I will check this and get back to you.
uh
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Labels and placeholders hideDo you use a translation plugin?
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Is it possible use function get?Hello Lenykeksik.
Thanks for your feedback.
All data is stored in the database of your WordPress instance as a meta value associated with the post of type shop_order.
This means you can use the wordpress function get_post_meta to retrieve the data of all fields configured for your checkout forms, internal and custom fields if you don’t have a valid WC_ORDER object available. In this case you will need the Order ID and you could retrieve the values stored with
$email = get_post_meta([order_id], '_billing_email', true);If you have access to a valid Order object constructed by the class WC_ORDER you can use the field name of a default WooCommerce field like _billing_email to retrieve the value.
$value = $order->billing_email;For custom fields you can use the field name as indicated in the settings of WooCommerce Poor Guys Swiss Knife in the Billing or Shipping Section
$value = $order->billing_your_sanitized_custom_field_name;or
$value = $order->shipping_your_sanitized_custom_field_name;Don’t forget to assure yourself that you have constructed the $order object with an order id otherwise you have to assure to load a valid order first.
Hope this answer helps you with your code.
Regards.
uh