View Single Post
  #8  
Old 05-09-2017, 10:25 AM
kristhasirah's Avatar
kristhasirah kristhasirah is offline
Member
 
Join Date: Jan 2010
Location: In middle of the nothingness
Posts: 196
Gender: Female
Credits: 29,019
kristhasirah
Default

what kind of error gives you the admincp.... because a few days ago i was unable to use the admincp because i accidentally moved the admincp template to a different folder.
But if for some reason the links don't open to display the rest of the links then go to the class_adminsidebar.php and in the end of the file find: protected function addClass(ArrayList $components){
and remove all the accordion word, it should end looking like this:
PHP Code:
    protected function addClass(ArrayList $components){
        
$components->get(0)->setClass("Button");
        for(
$i 1$i $components->size(); $i += 2){
            
$components->get($i)->setClass("Button"); 
            
$components->get($i 1)->setClass("Content");            
        }
        return 
$components;
        
    } 
wont look pretty but will have access to all the links ^^
Reply With Quote