dabbuhl Posted April 3, 2008 Posted April 3, 2008 A client of mine called me with a problem. Here is the website: http://www.jbhimports.com/osCommerce/ The problem is that they had someone customize the menu and somehow removed the Categories from the menu. How could they have done this and which file should I edit to add back in the Categories? Everything else seams to work fine but you can't look at any Categories. In the backoffice admin, there doesn't seam to be anything done to the products or categories so I figure it is in the php file that they edited for the menu. Please help if you can.
♥Vger Posted April 3, 2008 Posted April 3, 2008 The answer may be as simple as editing the includes/column_left.php file to re-add the Categories to that column e.g. if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } But if you didn't know that, or don't know which files control the categories then you really shouldn't be taking on paid clients. Vger
dabbuhl Posted April 3, 2008 Author Posted April 3, 2008 The answer may be as simple as editing the includes/column_left.php file to re-add the Categories to that column e.g. if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } But if you didn't know that, or don't know which files control the categories then you really shouldn't be taking on paid clients. Vger What you have listed is in the column_left.php file. The customer did this change to the page, not myself. He called me to try and figure out what went wrong. If you look at the clients page, you can see the menu that they have setup. I think, if I can get to this menu, I can add the categories. How do I find out what controls this menu?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.