Thanks a lot!!! I did this.. The new template had no code in the middle, just>
<!-- BOF: Display grid of available sub-categories, if any -->
<!-- EOF: Display grid of available sub-categories, if any -->
I saw the second file from the search result that was:
/includes/templates/template_default/templates/tpl_index_categories.php
I selected the lines in the middle and paste in the template code. So now look like this:
<!-- 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, if any -->
It works? Now.. I was thinking that I need to add the files "tpl_modules_category_row.php" ... but is working anyway!
Thanks for your support buddy!