View Single Post
Re: Problem with "Create an account"....
Old
  (#2 (permalink))
mikem
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
Re: Problem with "Create an account".... - 01-04-2003, 06:42 PM

Quote:
Originally Posted by Ryetsu
Hi all!

First off, this site rocks! Your PHPBB forum registration mod works wonderfully!

I have one minor issue that I am curious if it is fixable.

My theme has a "Create a account" button in the upper left hand side of my webpage. If your logged in it will show your uname. In fact its located in the same spot on this website right below the Nukemods title. When I click on "Create a account" it brings up the Nuke registration form and not the forum reg form. Here is the code snippet I believe is the culprit:
<font class="content">$theuser</font>

Any ideas on how to fix it?

While I am here I have one more minor issue. When you leave the profile editor on the forum side it has a option to "Return to Index". If you click that it changes my original nuke theme to subSilver for some unknown reason.

Any thoughts?

Thanks in advance all!

Ryetsu
Look in your theme.php file for the link to Create a New account.
Code:
	$theuser = "<a href=\"modules.php?name=Your_Account&op=new_user\">Create an account";
see the link?

it needs to be changed to
Code:
	$theuser = "<a href=\"modules.php?name=Forums&file=profile&mode=register\">Create an account";
That is, if you want that link to point to the Forum's registration.

As for the subSilver theme changing issue. Make sure that you have your Admin Preferences in Nuke Default theme set to the same Default template you have set in your Forums Admin Configuration.

mikem
   
Reply With Quote