amphios
amphios
Quick question, how would I go about showing information when a user isn't logged in, then goes away when he is. It's not.
			<div class="green">
				User Panel:	
				<div class="notice">
				{if $User.NotSignedIn}
				Test
				{/if}
				<ul>
				{if $User.SignedIn}
				<div class="ProfileBox">
				<span class="Photo">
					{photo_link}
				</span>
					{profile_link}
					{inbox_link}
					{signinout_link}
				</div>
				{/if}
				</ul>
				</div>
			
			</div>