gjh42.. All I can say is: YOURE A LEGEND!
You dont know how long I have spend trying to find the answer for this, and now with your help ive finally fixed it!
For anybody who struggles at all with what code to add in the above posts, all you have to do is:
Replace:
<!-- BOF: Display grid of available sub-categories, if any -->
<!-- hsyong remove categories thumbnails -->
<!-- EOF: Display grid of available sub-categories -->
With:
<!-- 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 -->
Save the changes and youre all fixed!
Thanks again gjh42, youve made my day!