change something in Registration Information
5 posters
Page 1 of 1
change something in Registration Information
hello FM
i want to make Easier registeration on my forum
so i want t change these thing :
user could use simple password
E-mail address box has @yahoo.com from before
remove personalized profile box
or
have a place on in this page for explain each part
i want to make Easier registeration on my forum
so i want t change these thing :
user could use simple password
E-mail address box has @yahoo.com from before
remove personalized profile box
or
have a place on in this page for explain each part
Re: change something in Registration Information
Sorry but this can not be done as far as I know maybe the other staff can help
Re: change something in Registration Information
I believe you can not change how the process works for usernames.qmars(pkq) wrote:hello FM
i want to make Easier registeration on my forum
so i want t change these thing :
user could use simple password
E-mail address box has @yahoo.com from before
remove personalized profile box
or
have a place on in this page for explain each part
I do not understand the email address one.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: change something in Registration Information
yes
@yahoo.com repace with example.com
and remove personalized profile box is too nesecry
or have a box in Registration Information page for explain for users
@yahoo.com repace with example.com
and remove personalized profile box is too nesecry
or have a box in Registration Information page for explain for users
Re: change something in Registration Information
For the personalize profile box go to Administration Panel > Users and Groups > Profiles and edit :
Make sure that they are NOT necessarily filled, this option causes this information to be forced at registration. Set it to NO
Now for the descriptions and placeholder go to Administration Panel > Modules > Javascript codes management and create a new script.
Title : Your choice
Placement : In all the pages
You can change the messages by modifying the second string in addDesc(), for example :
Also you can use the class .register_desc to modify the style of the descriptions. For now you should just add this to your stylesheet for your forum version :
Display > Colors > CSS stylesheet
- Gender
- Birthday
Make sure that they are NOT necessarily filled, this option causes this information to be forced at registration. Set it to NO
Now for the descriptions and placeholder go to Administration Panel > Modules > Javascript codes management and create a new script.
Title : Your choice
Placement : In all the pages
- Code:
$(function() {
if (location.pathname == '/register' && location.search == '?agreed=true&step=2') {
document.getElementById('email').placeholder = '@yahoo.com';
addDesc('#username_reg','The username you will be using on the forum to log in and post messages.');
addDesc('#email','Your email address will be used to activate your account and receive newsletters.');
addDesc('#password_reg','The password you will use to log in to your new account.');
}
function addDesc(element, text){$(element).after('<div class="register_desc">'+text+'</div>')}
});
You can change the messages by modifying the second string in addDesc(), for example :
- Code:
addDesc('myId','The message to be displayed')
Also you can use the class .register_desc to modify the style of the descriptions. For now you should just add this to your stylesheet for your forum version :
Display > Colors > CSS stylesheet
- Code:
.register_desc { float:left }
Re: change something in Registration Information
tnx u so much
description working
but placeholder doesnt work
also .register_desc { float:left } doesnt work do
sorry but i didnt undrestand what .register_desc { float:left } do
description working
but placeholder doesnt work
also .register_desc { float:left } doesnt work do
sorry but i didnt undrestand what .register_desc { float:left } do
Re: change something in Registration Information
ooops!
no one cant register
when i want to register i get this message Thank you for registering. Your account has been created. You may now log in with your username and password.
but i cant login and in forum and in my STATISTICS written The newest registered user is the last my user
no one cant register
when i want to register i get this message Thank you for registering. Your account has been created. You may now log in with your username and password.
but i cant login and in forum and in my STATISTICS written The newest registered user is the last my user
Re: change something in Registration Information
Go to your template and look for that particular input. Add in the placeholder like this
Don't add in the entire code by itself but just add the placeholder="example@example.com" like what I did in the code.
- Code:
<input type="username" placeholder="example@example.com" />
Don't add in the entire code by itself but just add the placeholder="example@example.com" like what I did in the code.
Re: change something in Registration Information
The placeholder and registration worked fine for me. The CSS rule I provided ensures that the descriptions are under the input fields. ( i.e. the password field which is floated )
The result should be :
Example : http://generaltesting.forumotion.com/register?agreed=true&step=2
Could you provide me with some information :
Which Browser are you using ?
I'll also inspect your forum to make sure you don't have any syntax errors.
Thanks.
The result should be :
Example : http://generaltesting.forumotion.com/register?agreed=true&step=2
Could you provide me with some information :
Which Browser are you using ?
I'll also inspect your forum to make sure you don't have any syntax errors.
Thanks.
Re: change something in Registration Information
yes
its working
im sorry
i was test it with explorer
but now i test it with chrome and its ok
tnx u bro
but i have problem with activation yet
im wating for mis Buttercup
this topic solved
tnx u
its working
im sorry
i was test it with explorer
but now i test it with chrome and its ok
tnx u bro
but i have problem with activation yet
im wating for mis Buttercup
this topic solved
tnx u
Re: change something in Registration Information
You're welcome ^^
Topic archived
Some things don't work on earlier versions of IE, like the placeholder. Glad it's working for you though.
Topic archived
Some things don't work on earlier versions of IE, like the placeholder. Glad it's working for you though.
Similar topics
» Topic information change
» How to change payment information, or who can I email?
» Is there a way for me to change from where is the poster's profile and information is displayed?
» How to change only size of user text in their post information
» Is it possible to change rules of registration?
» How to change payment information, or who can I email?
» Is there a way for me to change from where is the poster's profile and information is displayed?
» How to change only size of user text in their post information
» Is it possible to change rules of registration?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum