mitchlin71 Posted July 30, 2010 Share Posted July 30, 2010 Good day, I really want to stop this Left_column Configuration box in Admin to STOP automatically dropdown when logging in. It is really annoying as I dont use Configuration so often, Id rather have Catalog box opened automatic. I have looked in all called php-files, but cant seem to find the code that says the Configbox must be expanded automatic. Any advice on where to look is veryvery welcome. Thanks in advance. Link to comment Share on other sites More sharing options...
Guest Posted July 30, 2010 Share Posted July 30, 2010 Hi, You can set default page category from changing in admin/includes/application_top.php file... On changing : if (!tep_session_is_registered('selected_box')) { tep_session_register('selected_box'); $selected_box = 'configuration'; } To: if (!tep_session_is_registered('selected_box')) { tep_session_register('selected_box'); $selected_box = 'catalog'; } this was extracted from http://www.oscommerce.com/forums/topic/343687-admin-default-categories-page-set-problem/ so full credit to Satish Regards, Tony Link to comment Share on other sites More sharing options...
mitchlin71 Posted July 30, 2010 Author Share Posted July 30, 2010 Hi Tony, Thank you very much m8. You are my hero :) That was so easy, cant believe I read over that code. Thanks again for your support. Byee, Hi, You can set default page category from changing in admin/includes/application_top.php file... On changing : if (!tep_session_is_registered('selected_box')) { tep_session_register('selected_box'); $selected_box = 'configuration'; } To: if (!tep_session_is_registered('selected_box')) { tep_session_register('selected_box'); $selected_box = 'catalog'; } this was extracted from http://www.oscommerce.com/forums/topic/343687-admin-default-categories-page-set-problem/ so full credit to Satish Regards, Tony Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.