有时咱们须要仅仅显示一层目录的URL路径.而不要出现多个路径的现实,咱们能够用如下方法修改:php
Edit /app/code/core/Mage/Catalog/Model/Url.phpapp
找到632行,而后将下面的注释掉this
//if (null === $parentPath) {
//$parentPath = $this->getResource()->getCategoryParentPath($category);
//}
//elseif ($parentPath == '/') {
$parentPath
=
''
;
//}
code