Hi,

Originally Posted by
rjsandlin
A website with zencart I just build last year requested a display only/category only (except for featured products) zencart installation. There are basically no products only showcasing categories with subcategories of lines of products. This is only a display cart with no transactions allowed.
The xml sitemap generator module does not list categories if there are no products. This is a major problem for this site. Is there anyway to remove the restriction that prevents the categories from showing up if there are no products?
Thanks in advance.
RJ Sandlin
Thank you for this post. That's my bag. 
Quick bug fix.
File includes/modules/pages/sitemapxml/sitemapxml_categories.php
Find line ~65:
PHP Code:
if ($products->fields['total'] > 1) {
replace by
PHP Code:
if ($products->fields['total'] == 0 || $products->fields['total'] > 1) {
Write about results.
Bookmarks