kellykz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error on add plugins page after update.the solution from @stnbrk worked great for me (disabling wp_debug in wp-config file). Thanks!
Forum: Plugins
In reply to: [CM Tooltip Glossary] Hide Anchor TitlePerfect, thanks! Didn’t see that option in the settings!
Forum: Plugins
In reply to: [Theme My Login] Custom Registration Fields – Select (dropdown)Nevermind, as soon as I posted this I saw I was missing the priority. Thanks again for your help!
Forum: Plugins
In reply to: [Theme My Login] Custom Registration Fields – Select (dropdown)Thank you! This works great, but is putting it after the submit button for some reason. Any idea why? My code:
function add_tml_registration_form_fields() { tml_add_form_field( 'register', 'user_login', array( 'type' => 'text', 'label' => 'Choose a Username', 'value' => tml_get_request_value( 'user_login', 'post' ), 'id' => 'user_login', 'priority' => 15, ) ); tml_add_form_field( 'register', 'first_name', array( 'type' => 'text', 'label' => 'First Name', 'value' => tml_get_request_value( 'first_name', 'post' ), 'id' => 'first_name', 'priority' => 15, ) ); tml_add_form_field( 'register', 'last_name', array( 'type' => 'text', 'label' => 'Last Name', 'value' => tml_get_request_value( 'last_name', 'post' ), 'id' => 'last_name', 'priority' => 15, ) ); tml_add_form_field( 'register', 'membership', array( 'type' => 'dropdown', 'label' => 'Are you an Active or Retired Member?', 'value' => tml_get_request_value( 'membership', 'post' ), 'options' => array( '1' => 'Active Member', '2' => 'Retired Member', ), ) ); } add_action( 'init', 'add_tml_registration_form_fields' );
Forum: Plugins
In reply to: [Theme My Login] Dropdown Select Custom Fields in RegistrationWe were using the template override, and now with the 7.0 update, the custom form fields are missing. I am trying to follow the documentation, but how do I add the select type like the above to the “theme-my-login-custom.php” using the example in the documentation? (tml_add_form_field) thanks.
nevermind, just changed the url as you said, lol. Thanks!
Can I ask what you had to do to fix this? We are running into the same issue it appears. Thanks so much!
Forum: Plugins
In reply to: [WooCommerce] Customer details removed from new order email in 3.2Scratch that, a new order came in and shipping address is there, so all is good. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Customer details removed from new order email in 3.2Okay, I just checked and my site did have templates copied into the theme that included the customer details and admin email. I deleted them, and the customer details now show, but the shipping address seems to be missing? Looking into that now……
Forum: Plugins
In reply to: [WooCommerce] Customer details removed from new order email in 3.2No, nothing that would prevent this, and was working fine until I updated from 3.1.2 to 3.2.1.
Just did some tests, resent the notifications, and still not showing where your screenshots indicate. Missing notes, email and phone.
Forum: Plugins
In reply to: [WooCommerce] Customer details removed from new order email in 3.2Not for us, the addresses are there, but the notes/email/phone Customer details are completely missing, happened when we updated to 3.2.1. It is really hindering the team handling our orders.
Forum: Plugins
In reply to: [WooCommerce] Customer details removed from new order email in 3.2Upgraded from 3.12 to 3.2.1 and now customer details are missing for us. Any way to add this back in?