Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

OSC 2.3.1 Admin -> Configuration


blr044

Recommended Posts

I did ask this question sometime last year but could not find any replies to it. Have looked in admin/includes/boxes/configuration.php and admin/configuration.php for a way I could edit the file so that when I log into Admin, configuration is collapsed instead of being expanded. Am just not seeing anything that would me a clue what can be changed, it it is possible in the ver 2.3.1. So am asking for any tips.

 

Thank you.

 

Bennett

Link to comment
Share on other sites

/admin/includes/column_left.php

 

Find this code:

 

<script type="text/javascript">
$('#adminAppMenu').accordion({
 autoHeight: false,
 icons: {
   'header': 'ui-icon-plus',
   'headerSelected': 'ui-icon-minus'
 }

Change to this:

 

<script type="text/javascript">
$('#adminAppMenu').accordion({
 autoHeight: false,
 active: false,
 icons: {
   'header': 'ui-icon-plus',
   'headerSelected': 'ui-icon-minus'
 }

All I did was add this line:

 

  active: false,

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...