Yes, i've created 5 new categories - two of which have items in them (but i'd expect empty categories to show too).
I had a quick look through the code,
./includes/templates/template_default/templates/tpl_index_categories.php:
Code:
<!-- BOF: Display grid of available sub-categories, if any -->
<?php
if (PRODUCT_LIST_CATEGORY_ROW_STATUS == 0) {
// do nothing
} else {
// display subcategories
/**
* require the code to display the sub-categories-grid, if any exist
*/
require($template->get_template_dir('tpl_modules_category_row.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_category_row.php');
}
?>
<!-- EOF: Display grid of available sub-categories -->
I had a look in the configuration table in the database (mysql), and it showed this set to 0.
I manually did an update on this value:
Code:
update configuration set configuration_value = 1 where configuration_title = 'Show SubCategories on Main Page while navigating';
Now it appears to work.
So the question is really - which config option in the GUI should be updating this to 1?