TESTED ON OC v.1.5.6.5 with Merkent responsive Bootstrap-3 Theme
---
controller/common/header.tpl
Code: Select all
line 107: foreach ($categories as $category) {
line 108 ADD: if ($category['sort_order'] == -1) { continue; }
line 109: if ($category['top']) {
---
model/catalog/category.tpl
REPLACE at the end of this long line, this END Part:
Code: Select all
AND cd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND c2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND c.status = '1' ORDER BY c.sort_order, LCASE(cd.name)");
with this End Part: (~Line 10)
Code: Select all
AND cd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND c2s.store_id = '" . (int)$this->config->get('config_store_id') . "' AND c.sort_order <> '-1' ORDER BY c.sort_order, LCASE(cd.name)");
---
controller/module/category.php
Code: Select all
Line 34: foreach ($categories as $category) {
Line 35 ADD: if ($category['sort_order'] == -1) { continue; }
---
to finally get, what you see on the image below!
Thank you Guys!
Ernie
---
