Search:
				
			
			
				
					Search took 1.00 seconds.
						
			
		
		
		
		
			
			
				
					- 
	
	
		
		
		
			
				
					
						Hello ismael33, 
 
 Are you using Form Layouts for your ads (check ClassiPress -> Form Layouts)? I guess you have removed the tags field inside there.
 
 
 
 
 
- 
	
	
		
		
		
			
				
					
						Use the function is_user_logged_in(). Example below: 
 
 
 <?php
 if ( is_user_logged_in() ) {
 echo 'Welcome, registered user!';
 } else {
 echo 'Welcome, visitor!';
 }
 ?>
 
 
 
 
 
- 
	
	
		
		
		
			
				
					
						I believe there is already an existing user shared modification relating to this of which you may search on this forum and here's one http://forums.appthemes.com/hide-login-form-when-logged-26658/. I...
					 
 
 
 
 
- 
	
	
		
		
		
			
				
					
						I modified classipress using the below code in theme-header, perhaps you can modify this code to place your form within the first section and what you want to replace it with when logged in after the...