Quote:
Originally Posted by Dean C
Moved to General vBulletin Questions - please read the forum descriptions more closely in future 
|
My fault. I figured this was a safe bet, but I guess not. :ermm:
Quote:
Originally Posted by Dean C
You can only get the email of a user if they are registered. If so use:
HTML Code:
<if condition="strpos($bbuserinfo['email'], '@yahoo') AND $bbuserinfo['userid'] > 0"></if>
Untested but it should work 
|
Hmmm...okay, my method of putting it into a template isn't going to work, since vB complains about calling a function. I'll have to find a way around that.
But your method makes me wonder if
Code:
<if condition="strpos($bbuserinfo['email'], '@yahoo')"></if>
wouldn't do the same thing. If the user isn't logged in, then $bbuserinfo['email'] couldn't possibly pass the strpos check. Correct?
Thanks for the info!