Forums / Templates, Stylesheets, Page Layout / 'Create an Account' link?

'Create an Account' link?

Locked
Results 1 to 8 of 8
This thread is locked. New replies are disabled.
05 Dec 2008, 02:25
#1
rooisnor avatar

rooisnor

Zen Follower

Join Date:
Jul 2008
Posts:
192
Plugin Contributions:
0

'Create an Account' link?

Where does this link show up when a guest is visiting your site? It only says 'Log in'
05 Dec 2008, 08:31
#2
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Posts:
10,324
Plugin Contributions:
0

Re: 'Create an Account' link?

Unless you are using SPLIT LOGIN (where the Register Page is separate from the LOGIN page), the default naming convention is to direct users to login.

IF you have "Create Account" for this - people who have already created an account won't know that it ALSO takes them to "login".

If you SPLIT the login (see above), you can create separate links to the sign-up page and the login page.
05 Dec 2008, 09:55
#3
rooisnor avatar

rooisnor

Zen Follower

Join Date:
Jul 2008
Posts:
192
Plugin Contributions:
0

Re: 'Create an Account' link?

schoolboy:

Unless you are using SPLIT LOGIN (where the Register Page is separate from the LOGIN page), the default naming convention is to direct users to login.

IF you have "Create Account" for this - people who have already created an account won't know that it ALSO takes them to "login".

If you SPLIT the login (see above), you can create separate links to the sign-up page and the login page.


Thank you! How do I 'split' the login?:blink:
05 Dec 2008, 11:01
#4
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Posts:
10,324
Plugin Contributions:
0

Re: 'Create an Account' link?

Admin>>>Layout Settings

(Near the bottom of the list...)

Use split-login page set to True
05 Dec 2008, 17:44
#5
rooisnor avatar

rooisnor

Zen Follower

Join Date:
Jul 2008
Posts:
192
Plugin Contributions:
0

Re: 'Create an Account' link?

schoolboy:

Admin>>>Layout Settings

(Near the bottom of the list...)

Use split-login page set to True


Thank you, didn't realize that can be that easy! Although it solves half my problem... I'd like to see

Home - Login - Create Account

...on the main page! People are not THAT smart to know they have to click on 'Login' to sign up... it is confusing!

Login means you are a member... Register/Create an account means you are NOT a member yet :lookaroun

Any ideas?
05 Dec 2008, 18:13
#6
fairestcape avatar

fairestcape

Totally Zenned

Join Date:
Mar 2008
Posts:
2,957
Plugin Contributions:
0

Re: 'Create an Account' link?

If you use EZ Pages you could create a link that says "Create Account" then make the internal link:-

index.php?main_page=create_account

... or you could hard-code that link into your site's php - wherever you please, actually.

<a href="index.php?main_page=create_account">Create Account</a>


Or you could use proper PHP formatting to create the link...

It's up to you.
05 Dec 2008, 18:42
#7
rooisnor avatar

rooisnor

Zen Follower

Join Date:
Jul 2008
Posts:
192
Plugin Contributions:
0

Re: 'Create an Account' link?

fairestcape:

If you use EZ Pages you could create a link that says "Create Account" then make the internal link:-

index.php?main_page=create_account

... or you could hard-code that link into your site's php - wherever you please, actually.

<a href="index.php?main_page=create_account">Create Account</a>


Or you could use proper PHP formatting to create the link...

It's up to you.


Thank you! Problem solved:clap:
05 Dec 2008, 22:03
#8
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: 'Create an Account' link?

Do not hard-code
Please use the proper zen_href_link function to create links.