您好,欢迎访问一九零五行业门户网

Magento 修正来自首页的产品页面包屑导航_PHP教程

本文章来给各位朋友介绍magento 修正来自首页的产品页面包屑导航实现方法,如果产品是从category产品列表中进入product详细页面,则面包屑导航中含有category path; 否则,当从首页,或搜索结果中,或者其他什么地方进入,则缺少之。我想,可能是magento支持一个产品放入多个category的缘故吧。不管怎么样,产品页中缺少了category path,用户体验不大好。
修正的方法,找到文件app/code/core/mage/catalog/helper/data.php
复制一份到local代码池
app/code/local/mage/catalog/helper/data.php
在函数getbreadcrumbpath的开始部分,加上如下的代码逻辑:
代码如下 复制代码
getbreadcrumbpath()
    {
        if (!$this->_categorypath) {
            $path = array();
            //add by date 2013-04-07 产品页面包屑导航修正
            if ($this->getproduct() && !$this->getcategory()) {
                $_categoryids = $this->getproduct()->getcategoryids();
                rsort($_categoryids);
                if ($_categoryid = $_categoryids[0]) {
                    $_category = mage::getmodel('catalog/category')->load($_categoryid);
                    mage::register('current_category', $_category);
                }
            }
            //end date 2013-04-07
if ($category = $this->getcategory()) {
                $pathinstore = $category->getpathinstore();
                $pathids = array_reverse(explode(',', $pathinstore));
                $categories = $category->getparentcategories();
                // add category path breadcrumb
                foreach ($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;
    }
首先判断当前是否是产品页,如果是并且没有category信息,就获取产品所属的category ids,magento中一个产品可以加入多个category中,现在也不管那么多了,只挑出其中一个幸运的category作为current_category
http://www.bkjia.com/phpjc/631527.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/631527.htmltecharticle本文章来给各位朋友介绍magento 修正来自首页的产品页面包屑导航实现方法,如果产品是从category产品列表中进入product详细页面,则面包屑导...
其它类似信息

推荐信息