Thread: Link questions
View Single Post
  #3  
Old 06-06-2009, 03:59 PM
Bloodrun's Avatar
Bloodrun Bloodrun is offline
I am, who I am.
 
Join Date: Apr 2009
Posts: 532
Gender: Male
Credits: 44,159
Bloodrun
Send a message via Yahoo to Bloodrun
Default RE: Link questions

Yes there is go to your functions.php page and in your sidebar function place this(right before the $sidebar = "):

PHP Code:
$group getgroup();
$cancp cancp($group);

if(
$cancp == "yes"){
$admin "<a href='admin.php'><b>ACP</b></a><br>";
}
else{
$admin "";

Then within the &sidebar = ", place this:

PHP Code:
".$admin." 
Hope I answered your question.
Reply With Quote