-
Author
-
August 22, 2014 at 09:02 #26371
gm713
ParticipantHi,
I have currently implemented a make-shift “agree to Terms & Conditions” and “Privacy Policy” option on the registration form here: http://greencardez.net/register/
There were 3 things I was hoping to accomplish:
1) I would rather have simple text instead of the checkbox
2) Is there a way to get rid of “This field can be seen by Everyone” copy?
3) The Users>Profile field links do not allow me to execute the target=”_new” command, thus not allowing me to open T&C and Privacy Policy links in a new tab/down, but in the same window. How do I open the links in a new tab/window?Thanks!
August 22, 2014 at 13:39 #26381Catalin
ModeratorHello,
1. I don’t understand… if you want to get rid of the checkbook users will not be able to agree…
2. add this code in our style.css file from your child tteme:COPY CODEbody.registration .field-visibility-settings-notoggle { display:none; }3. send me admin credentials to help you with this… reply as private for security reasons
Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 22, 2014 at 18:59 #26423gm713
ParticipantThere are a couple things I’m asking. Hopefully this will add explanation.
1) The reason why I was to get rid of the checkbox is because after registration the user can go to edit profile page and uncheck it, which is something I don’t want to allow. If it is possible to just display this during registration, and they never see it again then I prefer keeping the checkbox. Does that make sense?
If it is not possible to hide it from the profile page, then as a back up, I am OK with just not having the checkbox but display text only, and I will adjust the copy to simply state something like “BY clicking Register I agree to T&M and Privacy Policy”
2) I added the code is the child style.css but it didn’t do anything.
3) Admin Credential, username: catalin pwd: catalin7queen
Thanks for you help
September 1, 2014 at 19:35 #27275Catalin
Moderator1. you could change the checkbox to a text field
2. “This field can be seen by Everyone” cannot be seen in register page anymore
3. take a look at this:
http://wordpress.org/support/topic/target_blank-does-not-work-in-field-title
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 6, 2014 at 23:15 #27821gm713
Participant1. I don’t see a place to change this to a text field for some reason. Do you have a screenshot of the options?
2. Confirmed. For my record, did you update anything or was it a matter of a cached page?
3. I tried including the javascript as a HTML field on register page, but didn’t do anything. Where/How do you recommend adding it?
September 8, 2014 at 14:48 #27952Catalin
Moderator1. credentials not working anymore… please reset them to take another look
2. it was a cache issue, I tested first the code on my test server and it was working
3. you can use code like this in your functions.php file from your child theme:COPY CODEfunction open_new_tab() { ?> <script>jQuery(document).ready(function($){$('selector for the link you want to openn in new page').attr('target', '_blank');});</script> <?php } add_action( 'kleo_after_body','open_new_tab');Thank you,
CatalinHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 8, 2014 at 17:20 #27989gm713
ParticipantThanks!
1. Done, credentials same as before.
2. Got it, thanks!
3. Added, but not firing a new tab/window.September 17, 2014 at 17:42 #28837Catalin
Moderator1. also done.
2. ok. glad to help.
3. done. you should have added the selector in the code i provided.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The topic ‘Registration page – New Required Field’ is closed to new replies.