The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

change something in Registration Information

5 posters

Go down

Solved change something in Registration Information

Post by qmars(pkq) August 4th 2014, 11:23

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
qmars(pkq)
qmars(pkq)
Forumember

Posts : 219
Reputation : 1
Language : english,persian
Location : iran

http://lemon-13.full-forum.com

Back to top Go down

Solved Re: change something in Registration Information

Post by qmars(pkq) August 5th 2014, 08:06

bump
qmars(pkq)
qmars(pkq)
Forumember

Posts : 219
Reputation : 1
Language : english,persian
Location : iran

http://lemon-13.full-forum.com

Back to top Go down

Solved Re: change something in Registration Information

Post by Ape August 5th 2014, 15:10

Sorry but this can not be done as far as I know maybe the other staff can help Wink


change something in Registration Information Left1212change something in Registration Information Center11change something in Registration Information Right112
change something in Registration Information Ape_b110
change something in Registration Information Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19084
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: change something in Registration Information

Post by SLGray August 5th 2014, 18:43

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 believe you can not change how the process works for usernames.

I do not understand the email address one.


change something in Registration Information Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: change something in Registration Information

Post by Ange Tuteur August 5th 2014, 18:55

Hi,

You want a placeholder for the email ?

change something in Registration Information PDFuCTQ
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: change something in Registration Information

Post by qmars(pkq) August 5th 2014, 20:47

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
qmars(pkq)
qmars(pkq)
Forumember

Posts : 219
Reputation : 1
Language : english,persian
Location : iran

http://lemon-13.full-forum.com

Back to top Go down

Solved Re: change something in Registration Information

Post by Ange Tuteur August 5th 2014, 22:39

For the personalize profile box go to Administration Panel > Users and Groups > Profiles and edit :

  • Gender
  • Birthday

Make sure that they are NOT necessarily filled, this option causes this information to be forced at registration. Set it to NO

change something in Registration Information Captur79


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 }
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: change something in Registration Information

Post by qmars(pkq) August 6th 2014, 08:34

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
qmars(pkq)
qmars(pkq)
Forumember

Posts : 219
Reputation : 1
Language : english,persian
Location : iran

http://lemon-13.full-forum.com

Back to top Go down

Solved Re: change something in Registration Information

Post by qmars(pkq) August 6th 2014, 11:55

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
qmars(pkq)
qmars(pkq)
Forumember

Posts : 219
Reputation : 1
Language : english,persian
Location : iran

http://lemon-13.full-forum.com

Back to top Go down

Solved Re: change something in Registration Information

Post by Japorized August 6th 2014, 18:54

Go to your template and look for that particular input. Add in the placeholder like this

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.
Japorized
Japorized
Forumember

Male Posts : 310
Reputation : 3
Language : English
Location : Malaysia

http://infinityhub.ace.st

Back to top Go down

Solved Re: change something in Registration Information

Post by Ange Tuteur August 6th 2014, 19:55

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 :
change something in Registration Information Captur80
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.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: change something in Registration Information

Post by qmars(pkq) August 7th 2014, 08:24

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
qmars(pkq)
qmars(pkq)
Forumember

Posts : 219
Reputation : 1
Language : english,persian
Location : iran

http://lemon-13.full-forum.com

Back to top Go down

Solved Re: change something in Registration Information

Post by Ange Tuteur August 7th 2014, 17:01

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. Smile
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum