Couple things to do here to speed things up ...
Get a download of v1.3.9e ...
Compare the files:
/includes/functions/featured.php
/includes/functions/specials.php
Do you use SaleMaker?
Next, look at the file:
/admin/includes/modules/category_product_listing.php
Test turning off the Category Dropdown list and see if it helps with speed ...
Change the line around 47 from:
Code:
if ($_SESSION['display_categories_dropdown'] == 0) {
to read:
Code:
if (false && $_SESSION['display_categories_dropdown'] == 0) {
To turn off the test for Linked Products which is a heavy load, go down to around line 165 and 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 read:
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);
}
I would first try the changes to the specials.php and featured.php ... then try the other changes ...
See if you need more than that for speed ...
NOTE: v1.3.9e is out and much faster on several things ...
If you do not upgrade, make sure you have all Security Patches and Updates:
http://www.zen-cart.com/forum/showthread.php?t=131115
and that you have added all Known Bug Fixes:
http://www.zen-cart.com/forum/showthread.php?t=82619