3

在 Magento 中,当用户直接访问产品页面时,例如来自 Google,面包屑只会是“主页”->“产品名称”。

即使用户直接从 Google 访问该页面,如何在其中添加类别?

例如,在此页面上,我想在面包屑中添加类别“婚纱”和“婚纱”。除了硬编辑 breadcrumbs.phtml 之外,我想出了一个想法,但是有什么方法可以以编程方式在 template/catalog/product/view.phtml 中添加面包屑项?

我可以获取当前产品的类别(标题和链接),然后使用一些函数/方法以动态和编程方式将它们添加到面包屑中。这可能吗?

4

1 回答 1

4

这是强制 Magento 显示完整面包屑的代码,包括通过循环遍历当前产品的每个类别的类别:

©丹尼文斯

<?php
if ($product = Mage::registry('current_product')) {
    $categories = $product->getCategoryCollection()->load();

    if($categories) {
        foreach ($categories as $category)
        {
            if($category) {
            $category = Mage::getModel('catalog/category')->load($category->getId());
            break;
            }
        }
    }
    $lastCrumbName = $product->getName();
    $lastCategoryAdjust = 0;
}
else {
    if($category = Mage::registry('current_category')) {
    $lastCrumbName = $category->getName();
    }
    $lastCategoryAdjust = 1;
}

if($category) {
    if($path = $category->getPath()) {
        $path = explode('/', $path);
        $crumbs = array('home' => array('label' => 'Home',
        'title' => 'Home',
        'link' => Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB),
        'first' => true,
        'last' => false
        ));
        for($i = 2; $i < count($path) - $lastCategoryAdjust; $i++) {
            $cur_category = Mage::getModel('catalog/category')->load($path[$i]);
            if($cur_category && $cur_category->getIsActive()) {
                $crumbs['category' . $path[$i]] = array('label' => $cur_category->getName(),
                'title' => $cur_category->getName(),
                'link' => $cur_category->getUrl(),
                'first' => false,
                'last' => false
                );
            }
        }
        $crumbs['current'] = array('label' => $lastCrumbName,
        'title' => '',
        'link' => '',
        'first' => false,
        'last' => true
        );
    }
}
?>
于 2012-09-25T17:40:11.277 回答