My personal mod.
If you want to exclude or deactivate some categories without delete them:
1).- Mark display order of the categories as "0"
2).- Find this code on cartplog.php:
PHP Code:
$cartplog_category_infos = $db->query_read("SELECT catid, title, products
FROM " . TABLE_PREFIX . "cartplog_categories
ORDER BY displayorder
");
3).- And replace whith this:
PHP Code:
$cartplog_category_infos = $db->query_read("SELECT catid, title, products
FROM " . TABLE_PREFIX . "cartplog_categories
WHERE displayorder > 0
ORDER BY displayorder
");
Regards.