View Single Post
  #5 (permalink)  
Old 11-01-2008, 11:41 PM
bobjuch bobjuch is offline
New Pligger
 
Join Date: Oct 2008
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Red face

Quote:
Originally Posted by nuki View Post
bryan0514, I have the same problem.

I have Pligg 9.9.5 and it tested with it but doesn't work

I have insert the code in login.tpl around line 48 (at the end of the form):

Code:
<input type="hidden" name="process" value="1"/>	
            {if $pagename ne "register"}
            	{if isset($register_step_1_extra)}
					<br />
				{$register_step_1_extra}
				{/if}
			{/if}            	
		</form> 
Anybody can help us?

Thanks

That's the wrong place. Do this:

Code:
<br />{#PLIGG_Visual_Register_Verify_Password#}:<br /><input type="password" id="verify" name="password2" size="20" tabindex="55"/>
{if $pagename ne "register"}
         {if isset($register_step_1_extra)}
               <br />
              {$register_step_1_extra}
	 {/if}
         {/if}   
<br /><input type="submit" name="submit" value="{#PLIGG_Visual_Register_Create_User#}" class="log2" tabindex="56" />
<input type="hidden" name="regfrom" value="sidebar"/>
<input type="hidden" name="process" value="1"/>
Reply With Quote