-
Author
-
September 25, 2016 at 04:24 #137071airandfingersParticipant
Hi, I’d like to be able to customize the registration process in several ways:
- On the home page’s form, remove the “Confirm” field
- On the register page, only show “Username once” (under Account Details or Profile Details, not both)
- Remove “This field can be seen by: Everyone” for fields whose visibility isn’t configurable
Are there relatively simple ways to do any of these?
I understand that I could directly modify the PHP in the theme directory, but I worry that I’d make a mistake, and that these changes would be overwritten when I update the theme.
September 27, 2016 at 04:57 #137271LauraModeratorHello, some can be done with css, i need to check it out, can you share admin credentials? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
September 27, 2016 at 11:18 #137302airandfingersParticipantPlease let me know if you didn’t get my previous message with my credentials. I selected “Set this as private reply,” but I’m unfamiliar with this system; that may mean that only I (the creator of this thread) can see my reply.
September 29, 2016 at 08:28 #137553LauraModeratorHello,
1- Attached screenshot. Do you mean this confirm?
2- Just change the Username field Name for another, at Users > Profile fields
3- It does require some php, i think the best way to do this is by a function that filters which fields are configurable and which not. For this you will need the help of a developer
I am sorry i cannot do much more as its a custom request. But if you need anything related to css i am happy to help you 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
September 29, 2016 at 09:20 #137559airandfingersParticipant1. Did you attach something? I don’t see it on here. I mean the second Password field in the Sign Up form you see on http://social.youtopiaproject.com if you’re not logged in.
2. Ah I see, I can rename it to whatever text field I want.. but what does “Primary” mean, and why can’t I delete this field?
3. I’m a developer, though I’m new to WordPress and themes. Would I just change the theme’s PHP files directly, and then re-do the changes every time we update SweetDate?
Thanks for your help so far!
October 2, 2016 at 14:28 #137864LauraModeratorHello,
1- You may need to edit the file, i can do that for you, but will need ftp credentials
2- Primary fields are used by the system and cant be deleted
3- You can use the child theme, is like an upper layer, every file at child theme is used instead of main theme files. So lets say you want to change header.php , you must have child theme activated, copy the header.php of the main theme, paste it at child theme, edit it and save. Now with every update that file wont be lost so your changes are safe. Again this is just an example 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 4, 2016 at 04:21 #138033airandfingersParticipantThanks for the info!
1. I’d rather modify it myself – not for security reasons, but so that I can learn to make similar changes without bothering your support team. Following your answer to #3, I’ll give it a shot and let you know if I get stuck.
2. Hm, I saw that there’s no “Delete” button, but what do you mean “used by the system”? Do these values need to be unique, or is the special in any way (other than being required and having its type fixed)? If I can’t remove it and I can’t change its type, then I’d like to replace one of my other text fields with it, but I need to know if there are constraints like uniqueness that it has to follow.
3. Ah! That’s what the child theme is for… clever! 🙂
October 6, 2016 at 14:42 #138424LauraModeratorHello, find the file home-register-form.php at page-parts and copy it to child theme ( create page-parts folder )
Now edit it and findCOPY CODE<div class="row"> <div class="five mobile-one columns"> <label class="right inline"><?php _e("Password",'kleo_framework');?>:</label> </div> <div class="three mobile-one columns"> <input type="password" name="signup_password" required="required" placeholder="<?php _e("Required",'kleo_framework');?>"> </div> <div class="one mobile-one columns text-center"> <label class="inline"></label> </div> <div class="three mobile-one columns"> <input type="password" name="signup_password_confirm" required="required" placeholder="<?php _e("Confirm",'kleo_framework');?>"> </div> </div>
These are the two password inputs, by deleting that row you can delete them. Customize it as you prefer 🙂
2. They can not be deleted because buddypress would no longer work. For example, the name field, its needed for the username to work, while the birthday field is not used by anything, just a profile field
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 10, 2016 at 08:00 #138782airandfingersParticipant1. Thanks! Removing the Confirm field from the true registration page is trickier, but now that I know what PHP to modify, I can do it, one way or another.
2. Hm, I still don’t understand why Buddypress needs its own name/username field, but I can either figure it out from the code or just leave it be.
Thanks for all your help!
October 12, 2016 at 02:13 #139189LauraModeratorGlad to help 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
March 8, 2017 at 07:23 #155036ElijehParticipantHello, I have the same problem with two password, username and email inputs. I did as you suggested above (file home-register-form.php at page-parts, copy it to child theme in create page-parts folder) and found the code you showed above, but which part do I remove and which do I leave in to have only one password, username and email inputs after activation?
[attachment file=155037]
Attachments:
You must be logged in to view attached files.March 8, 2017 at 23:45 #155137LauraModeratorHello, what you show at the screenshot is the default registration page of buddypress, you cant remove those field from that page
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
March 9, 2017 at 01:23 #155165ElijehParticipantI’m disappointed to learn that, but thank you for replying.
March 10, 2017 at 02:35 #155293LauraModeratorNo problem, let me know if you need anything else 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
You must be logged in to reply to this topic.