嗨,我有一个magento网站,其中包含像mydomain / Parent-category / sub-category这样的网址,但我知道这个URL为子类别像mydomain / Subcategory..please帮助我如何从主要类别中删除主要类别magento中的子类别的URL ...我会很高兴... 谢谢很多...我想要像http://www.Sofasshopping.com
这样的网址答案 0 :(得分:-2)
这有用吗?根本没有得到赞扬。我也在寻找解决方案,并且可能在www.n2ndevelopers.com
找到了解决方案转到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,然后点击提交。
现在刷新缓存以查看效果。