Quantcast
Channel: besstar – magento 建站,magento 2.0建站,magento 外贸模板,magento 网站建设,magento 网站制作,深圳 magento建站,广州 magento,外贸建站,深圳 外贸建站
Viewing all articles
Browse latest Browse all 15

Magento多级分类URL去掉父目录

$
0
0

在开发中,有时候需要将多级分类的url简化,Magento的URL默认是显示多级分类的
http://www.china-hf.net/分类1/分类2/分类3
现在需要简化为:

分类2的URL为:http://www.china-hf.net/分类2
分类3的URL为:http://www.china-hf.net/分类3
具体修改方法如下:
打开app/code/core/Mage/Catalog/Model/Url.php这个php文件,找到
if (null === $parentPath) {
$parentPath = $this->getResource()->getCategoryParentPath($category);
}
elseif ($parentPath == ‘/’) {
$parentPath = ”;
}
把上面的代码修改为:
//if (null === $parentPath) {
//$parentPath = $this->getResource()->getCategoryParentPath($category);
/


Viewing all articles
Browse latest Browse all 15

Trending Articles