Yes, I remember having this issue with around 250 categories, from memory and comparing my admin files I think you can do two things
1. Disable the 'Go To' dropdown box, in includes/modules/category_product_listing.php
line47 change
Code:
if ($_SESSION['display_categories_dropdown'] == 0) {
to
Code:
if (false && $_SESSION['display_categories_dropdown'] == 0) {
2. Disable the check for linked status, the yellow link box will not show,
line 167 change
Code:
if (zen_get_products_to_categories($categories->fields['categories_id'], true, 'products_active') == 'true') {
echo ' ' . zen_image(DIR_WS_IMAGES . 'icon_yellow_on.gif', IMAGE_ICON_LINKED);
to
Code:
if (false && zen_get_products_to_categories($categories->fields['categories_id'], true, 'products_active') == 'true') {
echo ' ' . zen_image(DIR_WS_IMAGES . 'icon_yellow_on.gif', IMAGE_ICON_LINKED);
You should see a marked improvement.
I think it was Ajeh who helped out here.