博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Magento产品页面包屑导航(Breadcrumb)修正
阅读量:6273 次
发布时间:2019-06-22

本文共 1401 字,大约阅读时间需要 4 分钟。

hot3.png

如果从Category产品列表中进入Product,则面包屑导航中含有Category Path; 否则,当从首页,或搜索结果中,或者其他什么地方进入,则缺少之。我想,可能是Magento支持一个产品放入多个Category的缘故吧。Magento产品页面包屑导航(Breadcrumb)修正不管怎么样,产品页中缺少了Category Path,用户体验不大好。

修正的方法,找到文件

app/code/core/Mage/Catalog/Helper/Data.php

  复制一份到local代码池

view sourceprint?1 app/code/local/Mage/Catalog/Helper/Data.php

  在函数getBreadcrumbPath的开始部分,加上如下的代码逻辑

public function getBreadcrumbPath(){if ($this->getProduct() && !$this->getCategory()) { $_categoryIds = $this->getProduct()->getCategoryIds(); if ($_categoryId = $_categoryIds[0]) { $_category = Mage::getModel('catalog/category')->load($_categoryId); Mage::register('current_category', $_category); } } if (!$this->_categoryPath) {$path = array();if ($category = $this->getCategory()) {$pathInStore = $category->getPathInStore();$pathIds = array_reverse(explode(',', $pathInStore));$categories = $category->getParentCategories();// add category path breadcrumbforeach ($pathIds as $categoryId) {if (isset($categories[$categoryId]) && $categories[$categoryId]->getName()) {$path['category'.$categoryId] = array('label' => $categories[$categoryId]->getName(),'link' => $this->_isCategoryLink($categoryId) ? $categories[$categoryId]->getUrl() : '');}}}if ($this->getProduct()) {$path['product'] = array('label'=>$this->getProduct()->getName());}$this->_categoryPath = $path;}return $this->_categoryPath;}

转载于:https://my.oschina.net/u/234530/blog/53976

你可能感兴趣的文章
Django的全文检索
查看>>
ItelliJ IDEA开发工具使用—创建一个web项目
查看>>
搞V6记录
查看>>
OC与js交互获取webview元素和赋值
查看>>
分布式锁的实现
查看>>
ctags --- 每天一个 Linux 命令
查看>>
页面加载新的东西到页面底部
查看>>
java执行命令行,路径有空格的解决办法
查看>>
test
查看>>
學習 React.js:用 Node 和 React.js 創建一個實時的 Twitter 流
查看>>
solr-4.10.4部署到tomcat6
查看>>
切片键(Shard Keys)
查看>>
淘宝API-类目
查看>>
virtualbox 笔记
查看>>
redis操作数据-sets
查看>>
Git 常用命令
查看>>
驰骋工作流引擎三种项目集成开发模式
查看>>
SUSE11修改主机名方法
查看>>
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
RestTemplate 使用总结
查看>>