Page 1 of 1
		
			
				Free Registration Short Code Paypal Pro Short Code
				
Posted: 
August 13th, 2011, 2:05 pm 
				by microjoes
				On my membership options page I need to hide the registration if the person is logged in. I am using the level 0 paypal pro form short code but when logged in the registration form is still present. What conditionals can I use to make this hide when a user is logged in?
			 
			
		
			
				Re: Free Registration Short Code Paypal Pro Short Code
				
Posted: 
August 13th, 2011, 5:55 pm 
				by Bruce C
				- Code: Select all
 [s2If current_user_can(access_s2member_level0) ]
put the form here
[/s2If]
[s2If !current_user_can(access_s2member_level0)]
display things for people that are logged in
[/s2If]
Things outside the code will be displayed no matter what.
NOTE:
Do use conditionals you need a PHP Execution plugin installed.
Hope that helps!

 
			 
			
		
			
				Re: Free Registration Short Code Paypal Pro Short Code
				
Posted: 
August 13th, 2011, 7:42 pm 
				by microjoes
				It almost works bur it is a bit buggy
			 
			
		
			
				Re: Free Registration Short Code Paypal Pro Short Code
				
Posted: 
August 13th, 2011, 9:35 pm 
				by Bruce C
				My bad, I forget to take the quotes out whenever using shortcodes. Try the edited version please.