nrtdesign
Forum Replies Created
-
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 );
Forum: Plugins
In reply to: [WooCommerce] Adding Shipping Address to Checkout Line TotalsThanks for your response, but I don’t think I stated my question clearly.
I’m not looking to add additional fields, I just want to add customer address near the Shipping line in the total section on the checkout page – in that section that shows the product total, shipping, tax, and total.
I’m using a filter that I found online, but it’s not displaying anything.
Forum: Plugins
In reply to: [Calculated Fields Form] Remove Responsiveness of Container DIVThanks for your help. That worked great!
I just have one more question: Is there a way to target the first column so I can reduce how much space it takes up? I’m using that column not as an input field, but as a label, and I don’t want it being the same width as the other fields.
Thanks