2 yabba Jan 27, 2008 09:59

LadyEase wrote:
I feel like I have been posting so many questions.... sorry about that.
pul-LEEZ continue to ask your questions!! Lots of questions!
I've taken an interest in (and made a start at) contributing to clarifying/expanding/updating the manual. This interest was sparked by my own newbie questions as well as other q's I've noticed on this forum that made me think, "Good content for the docs."
Also, any q asked and effectively answered becomes persistent reference material for future newbies.
So. Don't apologize, k?
kazar
¥åßßå... that was a thing of beauty... works perfect. thank you
<?php
if( empty( $current_User ) )
{ // not logged in
}
else
{ // logged in
switch( $current_User->ID )
{
case 1 :
echo 'you can see this';
break;
case 2 :
echo 'you can see this';
break;
case 3 :
echo 'you can see this';
break;
default :
}
}
?>
http://www.beatease.com/web-design.php/b2evolution-hacks/custom-display-for-specific-users
I've been called many things in my life ... I even got accused of being lucid once, but that was by an aussie and they're renowned for huge spaces .... mainly between the ears :|
but that's the first time I've been accused of beauty .... can I recommend a good opticians?
¥
warning: not fit for all ages:
¥åßßå when a Lady who calls herself "easeee" says your thing is beautiful DO NOT argue!
Okay back on topic: nice solution!
:P yer bullshit is only matched by your perception ...... that was another fortune cookie ;)
¥
"thing of beauty".. well it was a beautiful CODE I must say. and who said anything about being easeeee.. LOL. You guys are too much... I LOVE IT HERE.
Ok, so the code works perfectly... so much so that I, with ¥åßßå's help, wrote out the code for user groups... cause not everyone might find it useful to have it only for each user. So if you want to display something for a selected group, you can. I like! It was tons of fun writing it all up in my blog!
http://www.beatease.com/web-design.php/b2evolution-hacks/custom-display-for-specific-groups
<?php
if( empty( $current_User ) )
{ // not logged in
}
else
{ // logged in
switch( $current_User->group_ID )
{
case 1 :
echo 'group 1 can see this';
break;
case 2 :
echo 'group 2 can see this';
break;
case 3 :
echo 'group 3 can see this';
break;
default :
}
}
?>
;)
¥