Guest Posted December 19, 2006 Share Posted December 19, 2006 I am using SPPC and was wondering if there was an easy way to show a message to only certain groups. Such as: when logged in as a Dealer it might show you that your level is Dealer or I might want to display a special notice to them on the index or other pages thanks! Quote Link to comment Share on other sites More sharing options...
Jan Zonjee Posted December 19, 2006 Share Posted December 19, 2006 I am using SPPC So you could have been aware of the thread on SPPC and was wondering if there was an easy way to show a message to only certain groups. If you knew PHP I guess you wouldn't have asked because it is a pretty elemental if/[elseif]/[else] construction like: if (isset($_SESSION['sppc_customer_group_id']) && $_SESSION['sppc_customer_group_id'] == '1') { echo 'Dear dealer (customer group id 1)'; } // you can stop here if you like but if there are more than option you need to use elseif elseif (isset($_SESSION['sppc_customer_group_id']) && $_SESSION['sppc_customer_group_id'] == '2') { echo 'Dear super dealer (customer group id 2)';; } // or for the default or last option else { echo 'Dear retail customer'; } Quote Link to comment Share on other sites More sharing options...
freakystreak Posted February 28, 2007 Share Posted February 28, 2007 So you could have been aware of the thread on SPPC If you knew PHP I guess you wouldn't have asked because it is a pretty elemental if/[elseif]/[else] construction like: if (isset($_SESSION['sppc_customer_group_id']) && $_SESSION['sppc_customer_group_id'] == '1') { echo 'Dear dealer (customer group id 1)'; } // you can stop here if you like but if there are more than option you need to use elseif elseif (isset($_SESSION['sppc_customer_group_id']) && $_SESSION['sppc_customer_group_id'] == '2') { echo 'Dear super dealer (customer group id 2)';; } // or for the default or last option else { echo 'Dear retail customer'; } Would this be placed on the index page? Quote Ah, the world wide web. What a wonderful place. Link to comment Share on other sites More sharing options...
Jan Zonjee Posted February 28, 2007 Share Posted February 28, 2007 Would this be placed on the index page? Or any other page. Quote Link to comment Share on other sites More sharing options...
freakystreak Posted March 5, 2007 Share Posted March 5, 2007 Tried this but is just displays the default text message. Any ideas? Quote Ah, the world wide web. What a wonderful place. Link to comment Share on other sites More sharing options...
freakystreak Posted March 5, 2007 Share Posted March 5, 2007 No need, got it working. Thanks Quote Ah, the world wide web. What a wonderful place. Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.