-
Author
-
March 21, 2016 at 11:02 #111935keyandceeParticipant
Hello everybody, is it possible to change the text on the “inputfields” ?
i would like to change it from Username to Email Adress.general i would that the user´s register/login ONLY with the Email Adress.
Thank you very much!
March 21, 2016 at 20:35 #112074RaduModeratorHi,
Please provide a screenshot that pointing out this
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 22, 2016 at 16:33 #112203RaduModeratorHi
There is no option to edit/add another fields to that landing page.
Just editing the php file : /wp-content/plugins/k-elements/shortcodes/templates/kleo_register.php
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 22, 2016 at 16:57 #112211keyandceeParticipant<form id=”register_form” class=”kleo-form-register” action=”<?php echo esc_url($register_link); ?>” name=”signup_form” method=”post”>
<div class=”row”>
<?php if (function_exists( ‘bp_is_active’ )) { ?>
<div class=”col-sm-6 first-col”>
<input type=”text” id=”reg-email” name=”signup_username” class=”form-control” required placeholder=”<?php _e(“Email”, ‘k-elements’);?>”>
</div>
<div class=”col-sm-6 last-col”>
<input type=”text” id=”fullname” name=”field_1″ class=”form-control” required placeholder=”<?php _e(“Your name”, ‘k-elements’);?>”>
</div>
<div class=”clear”></div>
<div class=”col-sm-12″>
<input type=”text” id=”reg-email” name=”signup_email” class=”form-control” required placeholder=”<?php _e(“Type your Email again”, ‘k-elements’);?>”>
</div>
<div class=”clear”></div>
<div class=”col-sm-6 first-col”>
<input type=”password” id=”reg-password” name=”signup_password” class=”form-control” required placeholder=”<?php _e(“Desired password”, ‘k-elements’);?>”>
</div>
<div class=”col-sm-6 last-col”>
<input type=”password” id=”confirm_password” name=”signup_password_confirm” class=”form-control” required placeholder=”<?php _e(“Confirm password”, ‘k-elements’);?>”>
</div>
<input type=”hidden” name=”signup_profile_field_ids” id=”signup_profile_field_ids” value=”1″ />
<?php wp_nonce_field( ‘bp_new_signup’ ); ?>
<?php } else { ?>
<div class=”col-sm-12″>
<input type=”text” id=”reg-email” name=”user_login” class=”form-control” required placeholder=”<?php _e(“E-Mail”, ‘k-elements’);?>”>
</div>
<div class=”col-sm-12″>
<input type=”text” id=”reg-email” name=”user_email” class=”form-control” required placeholder=”<?php _e(“Your email”, ‘k-elements’);?>”>
</div>
<?php } ?>
</div>is this possible to say, login with the email ? like this code?
March 23, 2016 at 15:55 #112360RaduModeratorHi,
If you want the login function to be with email address try this plugin : https://wordpress.org/plugins/wp-email-login/ and leave the form unmodified, add a new line where you notify the users that they can perform login with email.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.