Hi there,
I’m adding some extra fields in registration form, but coun’t locate where the field’s placeholders are defined. I can insert it right on the code, but I lose the transition effect. Code Eg:
<p class="woocommerce-FormRow woocommerce-FormRow--last form-row form-row-last">
<label for="billing_last_name"><?php _e( 'Last name', 'uplift' ); ?> <span class="required">*</span></label>
<input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="billing_last_name" id="<strong>billing_last_name</strong>" value="<?php if ( ! empty( $_POST['billing_last_name'] ) ) echo esc_attr( $_POST['billing_last_name'] ); ?>" />
</p>
Where are they defined?
Thank you!