如何从magento中的子类别的URL中删除main-category

时间:2010-09-01 07:44:57

标签: php magento

嗨,我有一个magento网站,其中包含像mydomain / Parent-category / sub-category这样的网址,但我知道这个URL为子类别像mydomain / Subcategory..please帮助我如何从主要类别中删除主要类别magento中的子类别的URL ...我会很高兴... 谢谢很多...我想要像http://www.Sofasshopping.com

这样的网址

1 个答案:

答案 0 :(得分:-2)

这有用吗?根本没有得到赞扬。我也在寻找解决方案,并且可能在www.n2ndevelopers.com

找到了解决方案

http://www.n2ndevelopers.com/magento/how-to-remove-parent-category-path-from-sub-category-url-in-magento/

转到app / code / core / Mage / Catalog / Model /

打开Url.php并转到第632行并评论(//)以下行

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

现在保存并上传。

现在登录您网站的管理员面板,然后转到System-> Config-> Index Management并单击全选,然后从操作下拉菜单中选择Reindex Data,然后点击提交。

现在刷新缓存以查看效果。