nrtdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Setting Shipping Phone Field to RequiredOkay, I figured how to bring up what’s in your screenshot. I had to switch to the Gutenberg Editor for that page. Avada, by default, doesn’t use that.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Setting Shipping Phone Field to RequiredI’m using the standard Checkout page that gets made by default when installing WooCommerce. When I look at the page, it shows a bunch of code like this (this is at the top).
<!-- wp:woocommerce/checkout -->
<div class="wp-block-woocommerce-checkout alignwide wc-block-checkout is-loading"><!-- wp:woocommerce/checkout-fields-block -->
<div class="wp-block-woocommerce-checkout-fields-block"><!-- wp:woocommerce/checkout-express-payment-block -->
<div class="wp-block-woocommerce-checkout-express-payment-block"></div>I looked at your screenshots, but how do I even bring that up in the wp-admin? I don’t see anything like that. The Avada Live Edit doesn’t display anything on Checkout, and the Appearance -> Customize doesn’t do it either.
- This reply was modified 1 month ago by nrtdesign.
There’s not a filter or hook that I could create to auto trigger a redirect? Or maybe modify the template file?
Forum: Plugins
In reply to: [Simple Membership] Unable to manually add memberOh ok. Thanks for your help!
Forum: Plugins
In reply to: [Simple Membership] Unable to manually add memberOk, I see what the problem was. It doesn’t allow adding a member if the email is being used by someone in the Users section.
Is there a setting to allow WP Administrators to also view the member content?
Yes, that would work fine.
Thanks for your response!
Forum: Fixing WordPress
In reply to: Single Product Page not showing productsDid you ever find a fix for this? I’m having the same problem, but in in the admin page for Products, Coupons and Orders. Nothing is displaying, and I’m getting the same Console error.
Did that validation error occur after you clicked on “Place Order”?
The site is: shop.learningbydesign.com
I couldn’t upload images, so here are the links to the screenshots you requested:
https://shop.learningbydesign.com/wp-content/uploads/2023/03/lbd-email-field-screenshot-1.jpg
https://shop.learningbydesign.com/wp-content/uploads/2023/03/lbd-email-field-screenshot-2.jpg
Nevermind. I figured it out.
Forum: Plugins
In reply to: [WooCommerce] Display Shipping Info AND Populate with Billing fieldsI would really just like it to verify the required fields have been entered upon clicking the Continue button. It appears that all custom fields added in the Order Notes section (after Shipping details) don’t get verified until after the payment info is entered and submitted. It would be nice if there was some way to verify them before that final Continue button was pressed (before going to Payment Details.
If not, will your plugin force the entering of a required field in the shipping section, even if WooCommerce is set to default to billing info (which hides the shipping section)?
I need to clarify that the fields are in the Additional Fields section. I notice that when I add a field to the Shipping or Billing fields, and mark it required, it won’t allow the user to continue unless those are marked. But in the Additional Fields, it allows the user to click continue and enter their CC info before triggering an alert. Is there a workaround for this, or is this just how WordPress works?
This is what I used to add custom fields to the shipping column on the order details page, in case anyone else out there would like to know:
function my_custom_checkout_field_display_admin_order_meta( $order ){ $order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id; echo '<p><strong>'.__('Field Name 1').':</strong> ' . get_post_meta( $order_id, 'field_name_1', true ) . '</p>'; echo '<p><strong>'.__('Field Name 2').':</strong> ' . get_post_meta( $order_id, 'field_name_2', true ) . '</p>'; } add_action( 'woocommerce_admin_order_data_after_shipping_address', 'my_custom_checkout_field_display_admin_order_meta', 10, 1 );