Can anyone please advise on how to remove the text links that show up on a category page. I have seen other asking the same question but haven’t seen any clear answer. What file needs to be modified to remove these links and not have them show up anymore. Please see image,
Thank you,
Hucklebuck
You need to edit core file [color=#ff0000]controllers/customer/categories.php[/color]
#replace:
$view->assign('subcategories', fn_get_subcategories($_REQUEST['category_id']));
#with
//$view->assign('subcategories', fn_get_subcategories($_REQUEST['category_id']));
$view->assign('subcategories', array());
I hope that helps,
—
Valentin