magento的url中 去掉多余的目录层级

有时我们需要仅仅显示一层目录的URL路径.而不要出现多个路径的现实,我们可以用以下方法修改:

Edit  /app/code/core/Mage/Catalog/Model/Url.php

找到632行,然后将下面的注释掉

//if (null === $parentPath) {
//$parentPath = $this->getResource()->getCategoryParentPath($category);
//}
//elseif ($parentPath == '/') {
$parentPath 
''
;
//}

上一篇:向量图兼容组件VectorCompat


下一篇:C# 调用Python库 最简单方法